style: flipping cards as background
This commit is contained in:
9
components/custom/background/background.tsx
Normal file
9
components/custom/background/background.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Tiles } from './components/tiles';
|
||||
|
||||
type BackgroundProps = {
|
||||
children: React.ReactNode;
|
||||
};
|
||||
|
||||
export function Background({ children }: BackgroundProps) {
|
||||
return <Tiles>{children}</Tiles>;
|
||||
}
|
||||
Reference in New Issue
Block a user