Skip to content

Commit

Permalink
feat: event block 위치 잡기 (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
selfishAltruism committed Mar 23, 2024
1 parent ad54068 commit 16a7fa6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pages/home/HomePage.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { memo, useEffect } from 'react';

import { CircleLinks, HomeBoards } from './components';
import EventBlock from './event/components/EventBlock';
import { PageUiStoreImpl } from './HomePageUiStore';

import { BodyScreen, GNB, Header, PageBody, PageStoreHOC } from '@/components';
Expand All @@ -19,6 +20,7 @@ const HomePage: React.FC = memo(() => {
<PageBody>
<BodyScreen>
<CircleLinks />
<EventBlock />
<HomeBoards />
</BodyScreen>
</PageBody>
Expand Down
13 changes: 13 additions & 0 deletions src/pages/home/event/components/EventBlock.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import styled from '@emotion/styled';

import { Box } from '@/components';

const EventBlock = () => {
return <Block></Block>;
};

const Block = styled(Box)`
background-color: red;
`;

export default EventBlock;

0 comments on commit 16a7fa6

Please sign in to comment.