-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8adc5e9
commit 7ac9bba
Showing
3 changed files
with
36 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { css } from "@styled-system/css"; | ||
|
||
export const container = css({ | ||
display: "flex", | ||
gap: "sm", | ||
}); | ||
|
||
export const content = css({ | ||
position: "relative", | ||
width: "100%", | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { Page } from "@features/page/Page"; | ||
import { BottomNavigator } from "@components/bottomNavigator/BottonNavigator"; | ||
import { Sidebar } from "@components/sidebar/Sidebar"; | ||
import { container, content } from "./WorkSpace.style"; | ||
|
||
const WorkSpace = () => { | ||
// TODO 여러개의 Page 관리 | ||
|
||
return ( | ||
<div className={container}> | ||
<Sidebar /> | ||
<div className={content}> | ||
<Page x={0} y={100} /> | ||
<Page x={800} y={10} /> | ||
<Page x={400} y={300} /> | ||
</div> | ||
<BottomNavigator /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default WorkSpace; |