Skip to content

Commit

Permalink
Merge pull request #13 from hayoung123/feature/tabUI
Browse files Browse the repository at this point in the history
[Feat]: slidedish 폴더구조 생성
  • Loading branch information
junzero741 authored Apr 20, 2021
2 parents ae1fb59 + af9cd23 commit e17bfe6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sidedish/src/component/Main/Main.jsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import React from 'react';
import BestSidedish from 'component/BestSidedish/BestSidedish';
import SlideDish from 'component/SlideDish/SlideDish';

const Main = () => {
return (
<div>
<BestSidedish />
<SlideDish />
{/* <MoreButton /> */}
</div>
);
};
Expand Down
7 changes: 7 additions & 0 deletions sidedish/src/component/SlideDish/SlideDish.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react';

const SlideDish = () => {
return <div></div>;
};

export default SlideDish;

0 comments on commit e17bfe6

Please sign in to comment.