Skip to content

Commit

Permalink
Merge pull request #145 from Walkhub/#144-SU-FileName-modify
Browse files Browse the repository at this point in the history
🔀:: (#144) file 명 수정 및 폴더 명 수정
  • Loading branch information
potatovllage authored May 27, 2022
2 parents 272b0be + a29c147 commit 8129198
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;
4 changes: 2 additions & 2 deletions src/pages/su/make/index.tsx → src/pages/su/create/index.tsx
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 8129198

Please sign in to comment.