import React, { useState } from "react"; import styles from "./DrawGuide.module.css"; import help_icon from "../../assets/help_icon.png"; export default function DrawGuide() { const [modal, setModal] = useState(false); const toggleModal = () => { setModal(!modal); }; return ( <> {modal && (
Welcome to the Map Builder! Here you can create an indoor map, render it and enjoy!:
After completing your map, click the render button and go to the View page to see your full featured map!