init repo

This commit is contained in:
2024-11-26 14:28:46 +08:00
commit 8f9dd089bc
42 changed files with 9792 additions and 0 deletions

27
frontend/src/App.tsx Normal file
View File

@@ -0,0 +1,27 @@
import { useState } from 'react'
import { Button } from '@fluentui/react-components'
import {
TableBody,
TableCell,
TableRow,
Table,
TableHeader,
TableHeaderCell,
TableCellLayout,
PresenceBadgeStatus,
Avatar,
} from '@fluentui/react-components'
export const App = () => {
return (
<div className='p-2'>
<div className="flex space-between gap-2">
<Button></Button>
<Button></Button>
<Button appearance="primary"></Button>
</div>
</div>
)
}
export default App