24 lines
499 B
TypeScript
24 lines
499 B
TypeScript
import { ReactNode } from "react";
|
|
|
|
interface Props {
|
|
bg_color: string;
|
|
txt_color: string;
|
|
className?: string;
|
|
children?: ReactNode;
|
|
id?: string;
|
|
}
|
|
|
|
const View = ({ bg_color, txt_color, className, children, id }: Props) => {
|
|
return (
|
|
<section
|
|
className={
|
|
"min-h-screen w-full " + bg_color + " " + txt_color + " " + className
|
|
}
|
|
id={id}
|
|
>
|
|
<div className="mx-auto w-11/12 py-24 lg:w-5/6">{children}</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default View;
|