move codebase to typescript

This commit is contained in:
CodinMaster
2022-01-22 05:35:21 +05:30
parent b3065e9756
commit ed650adc83
11 changed files with 135 additions and 21 deletions

10
src/theme.ts Normal file
View File

@@ -0,0 +1,10 @@
import { extendTheme, ThemeConfig } from "@chakra-ui/react";
const config: ThemeConfig = {
initialColorMode: "dark",
useSystemColorMode: false,
};
const theme = extendTheme({ config });
export default theme;