ファイル
btrc-hub/frontend/src/components/layout/SidebarComponent.tsx
T
2025-07-19 23:26:18 +09:00

10 行
194 B
TypeScript

import React from 'react'
type Props = { children: React.ReactNode }
export default ({ children }: Props) => (
<div className="p-4 w-full md:w-64 md:h-full">
{children}
</div>)