import type { ComponentProps, FC, PropsWithChildren } from 'react' type TProperties = PropsWithChildren> export const Card: FC = (properties) => { const { children, ...restProperties } = properties return (
{children}
) }