├── .gitignore ├── .nowignore ├── README.md ├── editor.html ├── figma.d.ts ├── index.js ├── manifest.json ├── now.json ├── package.json ├── src ├── code.tsx ├── components │ └── editor-layout │ │ └── EditorLayout.tsx ├── editor.html ├── editor.tsx ├── serialize.ts ├── transformers │ └── snapshotToReactFigmaAst.ts ├── ui.html └── ui.tsx ├── tsconfig.json ├── webpack.config.editor.js ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /dist 3 | /build 4 | .idea 5 | /public 6 | -------------------------------------------------------------------------------- /.nowignore: -------------------------------------------------------------------------------- 1 | .cache 2 | node_modules 3 | dist 4 | .idea 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/README.md -------------------------------------------------------------------------------- /editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/editor.html -------------------------------------------------------------------------------- /figma.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/figma.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/index.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/manifest.json -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/package.json -------------------------------------------------------------------------------- /src/code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/src/code.tsx -------------------------------------------------------------------------------- /src/components/editor-layout/EditorLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/src/components/editor-layout/EditorLayout.tsx -------------------------------------------------------------------------------- /src/editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/src/editor.html -------------------------------------------------------------------------------- /src/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/src/editor.tsx -------------------------------------------------------------------------------- /src/serialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/src/serialize.ts -------------------------------------------------------------------------------- /src/transformers/snapshotToReactFigmaAst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/src/transformers/snapshotToReactFigmaAst.ts -------------------------------------------------------------------------------- /src/ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/src/ui.html -------------------------------------------------------------------------------- /src/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/src/ui.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/webpack.config.editor.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-figma/code-generator/HEAD/yarn.lock --------------------------------------------------------------------------------