authorizer/dashboard/src/pages/Home.tsx

12 lines
209 B
TypeScript
Raw Normal View History

2022-01-19 16:50:25 +00:00
import { Box } from '@chakra-ui/react';
import React from 'react';
2022-01-19 16:50:25 +00:00
export default function Home() {
return (
<Box>
Hi there 👋 <br />
Welcome to Authorizer administrative dashboard!
</Box>
);
}