├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .jest └── setup-tests.js ├── .prettierrc.js ├── .storybook ├── main.js ├── preview-head.html └── preview.jsx ├── babel.config.js ├── index.html ├── jest.config.js ├── package.json ├── src ├── main.jsx ├── styles │ ├── MyThemeProvider.jsx │ ├── global-styles.js │ ├── render-theme.js │ └── theme.js └── templates │ └── App │ ├── __snapshots__ │ └── test.jsx.snap │ ├── index.jsx │ ├── stories.jsx │ ├── styles.js │ └── test.jsx └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/.gitignore -------------------------------------------------------------------------------- /.jest/setup-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/.jest/setup-tests.js -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/.storybook/preview.jsx -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/package.json -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/styles/MyThemeProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/src/styles/MyThemeProvider.jsx -------------------------------------------------------------------------------- /src/styles/global-styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/src/styles/global-styles.js -------------------------------------------------------------------------------- /src/styles/render-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/src/styles/render-theme.js -------------------------------------------------------------------------------- /src/styles/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/src/styles/theme.js -------------------------------------------------------------------------------- /src/templates/App/__snapshots__/test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/src/templates/App/__snapshots__/test.jsx.snap -------------------------------------------------------------------------------- /src/templates/App/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/src/templates/App/index.jsx -------------------------------------------------------------------------------- /src/templates/App/stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/src/templates/App/stories.jsx -------------------------------------------------------------------------------- /src/templates/App/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/src/templates/App/styles.js -------------------------------------------------------------------------------- /src/templates/App/test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/src/templates/App/test.jsx -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizomf/react-18-vite-storybook-jest-styled-components/HEAD/vite.config.js --------------------------------------------------------------------------------