├── pages ├── index.js ├── _app.js └── posts │ └── goodcss.md └── package.json /pages/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Link } from 'react-router-dom' 3 | ddimport posts from '../posts' 4 | 5 | export default () => 6 |
7 |

Writing

8 |
9 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mrmrs-writing", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1", 8 | "dev": "x0 pages -o" 9 | }, 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "@compositor/x0": "^5.1.0-2", 14 | "emotion-theming": "^9.2.3", 15 | "react-emotion": "^9.2.3", 16 | "react-router-dom": "^4.3.1", 17 | "rebass": "^2.0.0-7", 18 | "styled-components": "^3.3.2", 19 | "styled-system": "^2.3.1" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Link } from 'react-router-dom' 3 | 4 | const Script = ({ src }) => 5 |