Skip to content

Commit

Permalink
πŸ“‘:: (#144) file λͺ… μˆ˜μ • 및 폴더 λͺ… μˆ˜μ •
Browse files Browse the repository at this point in the history
  • Loading branch information
potatovllage committed May 26, 2022
1 parent 272b0be commit a29c147
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type Information = {
btnDisable: boolean;
};

const MakeRoot: FC = () => {
const CreateRoot: FC = () => {
const [allContent, setAllContent] = useState<Information>({
inputContent: "",
seeModal: false,
Expand Down Expand Up @@ -251,4 +251,4 @@ const SchoolName = styled.p`
color: ${({ theme }) => theme.color.black};
`;

export default MakeRoot;
export default CreateRoot;
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from "react";
import MakeRoot from "@src/components/su/MakeRoot";
import CreateRoot from "@src/components/su/CreateRoot";

const RootMakePage = () => {
return (
<>
<MakeRoot />
<CreateRoot />
</>
);
};
Expand Down

0 comments on commit a29c147

Please sign in to comment.