Skip to content

Commit

Permalink
Refactor: refactor ContributingTemplatePage import #84
Browse files Browse the repository at this point in the history
  • Loading branch information
sinji2102 committed Oct 9, 2023
1 parent fb267a4 commit 90099fe
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/pages/ContributingTemplatePage.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { styled } from "styled-components";
import React, { useEffect } from "react";
import MDEditor from "@uiw/react-md-editor";
import Button from "@mui/material/Button";
import { useRecoilState, useRecoilValue } from "recoil";
import Button from "@mui/material/Button";
import { templateContent, templateState } from "../recoil/templateState";
import { eachStepState, modalState } from "../recoil/commonState";
import { BaseModal } from "../components/common/modal/BaseModal";
import { TemplateModal } from "../components/common/modal/templateModal";
import { eachStepState, modalState } from "../recoil/commonState";
import MarkdownPreview from "../components/common/MarkdownPreview";
import { styled } from "styled-components";
import MDEditor from "@uiw/react-md-editor";

function ContributingTemplatePage(props) {
const [modalValue, setModalValue] = useRecoilState(
Expand All @@ -21,7 +21,6 @@ function ContributingTemplatePage(props) {
}, []);

const handlesave = () => {
//value 고대로 저장해서 server로 보내야함. 이건 추후에 백엔드랑 회의 후 정해야할 듯
};

const handleOpen = () => setModalValue(true);
Expand Down

0 comments on commit 90099fe

Please sign in to comment.