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