authorizer/dashboard/src/pages/Home.tsx

7 lines
149 B
TypeScript
Raw Normal View History

import { Box } from "@chakra-ui/react";
import React from "react";
export function Home() {
return <Box>Welcome to Authorizer dashboard!</Box>;
}