import type { HTMLAttributes, PropsWithChildren } from 'react'; export type ContainerProps = HTMLAttributes & PropsWithChildren; export function ElementContainer({ children, id, title, ...props }: ContainerProps) { return (
{children}
); }