Skip to content

Commit

Permalink
Refactor: refactor ReadmeTemplatePage import #84
Browse files Browse the repository at this point in the history
  • Loading branch information
sinji2102 committed Oct 9, 2023
1 parent 057d165 commit fb267a4
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/pages/ReadmeTemplatePage.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
import { styled } from "styled-components";
import React, { useState, 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 { BaseModal } from "../components/common/modal/BaseModal";
import { eachStepState, modalState } from "../recoil/commonState";
import { BaseModal } from "../components/common/modal/BaseModal";
import { TemplateModal } from "../components/common/modal/templateModal";
import MarkdownPreview from "../components/common/MarkdownPreview";
import MDEditor from "@uiw/react-md-editor";

import { styled } from "styled-components";

function ReadmeTemplatePage() {
const [modalValue, setModalValue] = useRecoilState(modalState("readme"));
Expand Down

0 comments on commit fb267a4

Please sign in to comment.