주석 추가
This commit is contained in:
parent
ae7ce41541
commit
46dae8f0eb
@ -6,7 +6,7 @@ import { useRecoilState } from "recoil";
|
|||||||
import { modalState } from "@/store/modalAtom";
|
import { modalState } from "@/store/modalAtom";
|
||||||
|
|
||||||
export default function CanvasMenu() {
|
export default function CanvasMenu() {
|
||||||
const [modalOption, setModalOption] = useRecoilState(modalState);
|
const [modalOption, setModalOption] = useRecoilState(modalState); //modal 열림닫힘 state
|
||||||
const [menuNumber, setMenuNumber] = useState(null);
|
const [menuNumber, setMenuNumber] = useState(null);
|
||||||
const [vertical, setVertical] = useState(true);
|
const [vertical, setVertical] = useState(true);
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@ import { ToggleonMouse } from "../header/Header"
|
|||||||
import { modalState } from "@/store/modalAtom";
|
import { modalState } from "@/store/modalAtom";
|
||||||
|
|
||||||
export default function MenuDepth01(){
|
export default function MenuDepth01(){
|
||||||
const [modalOption, setModalOption] = useRecoilState(modalState);
|
const [modalOption, setModalOption] = useRecoilState(modalState); //modal 열림닫힘 state
|
||||||
return(
|
return(
|
||||||
<div className="canvas-depth2-inner">
|
<div className="canvas-depth2-inner">
|
||||||
<ul className="canvas-depth2-list">
|
<ul className="canvas-depth2-list">
|
||||||
|
|||||||
@ -20,7 +20,7 @@ const propsClick = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default function SettingModal01 (){
|
export default function SettingModal01 (){
|
||||||
const [modalOption, setModalOption] = useRecoilState(modalState);
|
const [modalOption, setModalOption] = useRecoilState(modalState); //modal 열림닫힘 state
|
||||||
const [buttonAct, setButtonAct] = useState(1);
|
const [buttonAct, setButtonAct] = useState(1);
|
||||||
const [close, setClose] = useState(false)
|
const [close, setClose] = useState(false)
|
||||||
const HandleClickClose = () => {
|
const HandleClickClose = () => {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user