File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change
1
+ import { styled } from "styled-components" ;
1
2
import React , { useEffect } from "react" ;
2
- import MDEditor from "@uiw/react-md-editor" ;
3
- import Button from "@mui/material/Button" ;
4
3
import { useRecoilState , useRecoilValue } from "recoil" ;
4
+ import Button from "@mui/material/Button" ;
5
5
import { templateContent , templateState } from "../recoil/templateState" ;
6
+ import { eachStepState , modalState } from "../recoil/commonState" ;
6
7
import { BaseModal } from "../components/common/modal/BaseModal" ;
7
8
import { TemplateModal } from "../components/common/modal/templateModal" ;
8
- import { eachStepState , modalState } from "../recoil/commonState" ;
9
9
import MarkdownPreview from "../components/common/MarkdownPreview" ;
10
- import { styled } from "styled-components " ;
10
+ import MDEditor from "@uiw/react-md-editor " ;
11
11
12
12
function ContributingTemplatePage ( props ) {
13
13
const [ modalValue , setModalValue ] = useRecoilState (
@@ -21,7 +21,6 @@ function ContributingTemplatePage(props) {
21
21
} , [ ] ) ;
22
22
23
23
const handlesave = ( ) => {
24
- //value 고대로 저장해서 server로 보내야함. 이건 추후에 백엔드랑 회의 후 정해야할 듯
25
24
} ;
26
25
27
26
const handleOpen = ( ) => setModalValue ( true ) ;
You can’t perform that action at this time.
0 commit comments