tubearchivist-frontend/src/components/BoxedContent.tsx

4 lines
111 B
TypeScript
Raw Normal View History

2022-04-13 18:08:32 +00:00
export const BoxedContent: React.FC = ({ children }) => (
<div className="boxed-content">{children}</div>
);