@chakra-ui/react#CSSReset JavaScript Examples

The following examples show how to use @chakra-ui/react#CSSReset. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: App.js    From bottle-radio with MIT License 6 votes vote down vote up
function App() {
  const path = window.location.pathname;
  return (
    <div className="App">
      {path === "/embed" ? (
        <PlayerEmbed />
      ) : (
        <ChakraProvider theme={customTheme}>
          <CSSReset />
          <Container />
        </ChakraProvider>
      )}
    </div>
  );
}
Example #2
Source File: preview.js    From codeursenseine.com with MIT License 5 votes vote down vote up
decorators = [
  (Story, context) => (
    <ThemeProvider theme={themes[context.globals.theme]}>
      <CSSReset />
      <Story />
    </ThemeProvider>
  ),
]
Example #3
Source File: index.js    From interspace.chat with GNU General Public License v3.0 5 votes vote down vote up
root.render(
  <>
    <CSSReset />
    <ChakraProvider theme={theme}>
      <App />
    </ChakraProvider>
  </>
);