Giter Club home page Giter Club logo

Comments (3)

github-actions avatar github-actions commented on May 29, 2024

Thank you for your contribution. We will check and reply to you as soon as possible.

from chrome-extension-boilerplate-react-vite.

Jonghakseo avatar Jonghakseo commented on May 29, 2024

OK. I forgot to write that you need ChakraProvider :)

스크린샷 2024-03-23 오후 6 15 27
const Popup = () => {
  return (
    <ChakraProvider>
      <Flex w={'100vw'} h={'100vh'} justifyContent={'center'} alignItems={'center'}>
        <Button colorScheme="teal">Button</Button>
      </Flex>
    </ChakraProvider>
  );
};

from chrome-extension-boilerplate-react-vite.

Jonghakseo avatar Jonghakseo commented on May 29, 2024

If you wrap above code with <ChakraProvider>, so you can see this.

스크린샷 2024-03-23 오후 6 17 56
const Popup = () => {
  const theme = useStorage(exampleThemeStorage);

  const openNewTabPage = () => {
    chrome.tabs.create({ url: chrome.runtime.getURL('/src/pages/dashboard/index.html') });
  };

  return (
    <ChakraProvider>
      <div className="App" style={{ backgroundColor: theme === 'light' ? '#fff' : '#000' }}>
        <header className="App-header" style={{ color: theme === 'light' ? '#000' : '#fff' }}>
          <img src={logo} className="App-logo" alt="logo" />
          <p>
            Edit <code>src/pages/popup/Popup.tsx</code> and save to reload.
          </p>
          {/* Your popup UI components here */}
          <button
            style={{ backgroundColor: theme === 'light' ? '#fff' : '#000', color: theme === 'light' ? '#000' : '#fff' }}
            onClick={exampleThemeStorage.toggle}>
            Toggle theme
          </button>
          <Button colorScheme="teal" onClick={openNewTabPage}>
            Open New Tab Page
          </Button>
          <Button colorScheme="blue">test</Button>
        </header>
      </div>
    </ChakraProvider>
  );
};

from chrome-extension-boilerplate-react-vite.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.