import React, { ReactNode } from 'react'; interface Props { children: ReactNode | ReactNode[]; } export const LightBackground = ({ children }: Props) => (
{children}
);