Skip to content

Commit

Permalink
feat: 사이드탭 확장위한 컨테이너 #101
Browse files Browse the repository at this point in the history
#preview
  • Loading branch information
1119wj committed Nov 18, 2024
1 parent b83f81c commit d2df238
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions frontend/src/components/common/SideContainer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
const SideContainer = ({
children,
className = '',
}: {
children: React.ReactNode;
className?: string;
}) => (
<div
className={`absolute left-0 top-0 flex h-full w-[600px] gap-0.5 ${className}`}
>
{children}
</div>
);

export default SideContainer;

0 comments on commit d2df238

Please sign in to comment.