Files
newsletter-hackernews/components/custom/background/background.tsx
2023-12-17 17:48:08 +01:00

10 lines
195 B
TypeScript

import { Tiles } from './tile/tiles';
type BackgroundProps = {
children: React.ReactNode;
};
export function Background({ children }: BackgroundProps) {
return <Tiles>{children}</Tiles>;
}