code format

This commit is contained in:
josc146
2023-05-22 10:52:06 +08:00
parent 035c6ab8de
commit bbad153ecb
28 changed files with 429 additions and 429 deletions

View File

@@ -1,10 +1,10 @@
import {FC, ReactElement} from 'react';
import {Card, Text} from '@fluentui/react-components';
import { FC, ReactElement } from 'react';
import { Card, Text } from '@fluentui/react-components';
export const Section: FC<{
title: string; desc?: string | null, content: ReactElement, outline?: boolean
}> =
({title, desc, content, outline = true}) => {
({ title, desc, content, outline = true }) => {
return (
<Card size="small" appearance={outline ? 'outline' : 'subtle'}>
<div className="flex flex-col gap-5">