├── .gitignore ├── README.md ├── manifest.json ├── package.json ├── src ├── App.tsx ├── code.tsx ├── ui.html └── ui.tsx ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | .idea 4 | *.tsbuildinfo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/react-figma-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/react-figma-boilerplate/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/react-figma-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/react-figma-boilerplate/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/react-figma-boilerplate/HEAD/src/code.tsx -------------------------------------------------------------------------------- /src/ui.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/react-figma-boilerplate/HEAD/src/ui.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/react-figma-boilerplate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/react-figma-boilerplate/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/react-figma-boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------