drfeely.com/components/View.tsx

25 lines
499 B
TypeScript
Raw Permalink Normal View History

2023-08-30 22:56:17 +00:00
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>
2023-08-30 22:56:17 +00:00
</section>
);
};
export default View;