12 lines
334 B
TypeScript
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>
|
|
);
|
|
};
|