import "react-app-polyfill/ie11"; import * as React from "react"; import * as ReactDOM from "react-dom"; import { theme } from "../src/theme"; import { ThemeExplorer } from "../src"; import { Center, ChakraProvider, VStack, Text, Heading, chakra, useColorModeValue, HStack, IconButton, Link, } from "@chakra-ui/react"; import { ColorModeSwitcher } from "../src/components/ColorModeSwitcher"; import { FaGithub } from "react-icons/fa"; const HomeScreen = () => (
Chakra UI Tooling } aria-label="Open GitHub Repository" isExternal href="https://github.com/TimKolberger/chakra-theme-visualizer" variant="ghost" size="sm" /> Chakra UI Theme Explorer Open the Theme Explorer in the right bottom corner
); const App = () => ( ); ReactDOM.render(, document.getElementById("root"));