import { ReactNode } from "react"; interface Props { bg_color: string; txt_color: string; className?: string; children?: ReactNode; id?: string; } const CenterView = ({ bg_color, txt_color, className, children, id, }: Props) => { return (
{children}
); }; export default CenterView;