feat: add dashboard setup with esbuild + chakra-ui
This commit is contained in:
19
dashboard/src/App.tsx
Normal file
19
dashboard/src/App.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import * as React from 'react';
|
||||
import { Text, ChakraProvider } from '@chakra-ui/react';
|
||||
import { MdStar } from 'react-icons/md';
|
||||
|
||||
export default function Example() {
|
||||
return (
|
||||
<ChakraProvider>
|
||||
<Text
|
||||
ml={2}
|
||||
textTransform="uppercase"
|
||||
fontSize="xl"
|
||||
fontWeight="bold"
|
||||
color="pink.800"
|
||||
>
|
||||
Authorizer Dashboard
|
||||
</Text>
|
||||
</ChakraProvider>
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user