Files
rwkv-runner/frontend/src/Pages/SectionTitle.tsx
josc146 9de121aabf update
2023-05-04 23:55:24 +08:00

5 lines
184 B
TypeScript

import { Text } from "@fluentui/react-components";
import { FC } from "react";
export const SectionTitle: FC<{ label: string }> = ({ label }) => <Text weight="medium">{label}</Text>;