mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 08:15:37 +00:00
10 lines
255 B
TypeScript
10 lines
255 B
TypeScript
import {Divider} from "@heroui/react";
|
|
|
|
export default function Section({title}: { title: string }) {
|
|
return (
|
|
<>
|
|
<h2 className="text-xl font-bold mt-8 mb-1">{title}</h2>
|
|
<Divider className="mb-4"/>
|
|
</>
|
|
);
|
|
} |