import type { FC, ReactNode } from 'react' type Props = { children: ReactNode } export default (({ children }: Props) => (
{children}
)) satisfies FC