12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
|
import { ReactNode } from "react";
|
||
|
|
||
|
const WelcomeScreenDecor = ({
|
||
|
children,
|
||
|
shouldRender,
|
||
|
}: {
|
||
|
children: ReactNode;
|
||
|
shouldRender: boolean;
|
||
|
}) => (shouldRender ? <>{children}</> : null);
|
||
|
|
||
|
export default WelcomeScreenDecor;
|