2023-05-04 23:55:24 +08:00

12 lines
334 B
TypeScript

import { FC, ReactElement } from "react";
import { SectionTitle } from "./SectionTitle";
export const Section: FC<{ title: string; content: ReactElement }> = ({ title, content }) => {
return (
<div className="flex flex-col gap-5">
<SectionTitle label={title} />
{content}
</div>
);
};