├── sandbox.config.json ├── .prettierrc ├── package.json └── public └── index.html /sandbox.config.json: -------------------------------------------------------------------------------- 1 | { 2 | "infiniteLoopProtection": true, 3 | "hardReloadOnChange": false, 4 | "view": "browser" 5 | } -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 80, 3 | "tabWidth": 2, 4 | "useTabs": false, 5 | "semi": false, 6 | "singleQuote": true, 7 | "trailingComma": "none", 8 | "bracketSpacing": true, 9 | "jsxBracketSameLine": false 10 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@emotion", 3 | "version": "1.0.0", 4 | "description": "", 5 | "keywords": [], 6 | "homepage": "https://codesandbox.io/s/new", 7 | "main": "src/index.js", 8 | "dependencies": { 9 | "@emotion/core": "0.13.1", 10 | "@emotion/css": "0.9.8", 11 | "@emotion/keyframes": "0.9.1", 12 | "@emotion/style": "0.8.0", 13 | "@emotion/styled": "0.10.6", 14 | "@emotion/styled-base": "0.10.6", 15 | "emotion": "9.2.12", 16 | "emotion-theming": "9.2.9", 17 | "facepaint": "1.2.1", 18 | "react": "16.5.2", 19 | "react-dom": "16.5.2", 20 | "react-emotion": "9.2.12", 21 | "react-scripts": "1.1.5", 22 | "recompose": "0.30.0" 23 | }, 24 | "devDependencies": {}, 25 | "scripts": { 26 | "start": "react-scripts start", 27 | "build": "react-scripts build", 28 | "test": "react-scripts test --env=jsdom", 29 | "eject": "react-scripts eject" 30 | } 31 | } -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 12 | 13 | 14 | 23 |