This commit is contained in:
josc146
2023-05-04 23:55:24 +08:00
parent 02b9fd8a53
commit 9de121aabf
26 changed files with 2389 additions and 203 deletions

View File

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