Files
newsletter-hackernews/components/custom/background/background.tsx
2023-12-16 23:27:07 +01:00

10 lines
201 B
TypeScript

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