This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-import React from 'react'; | |
+import React, { createElement } from 'react'; | |
import { createClient } from 'contentful'; | |
import Helmet from 'react-helmet'; | |
+import marksy from 'marksy'; | |
+ | |
+// Markdown helper function | |
+const getMarkup = field => { | |
+ if (!field) return null; | |
+ const compile = marksy({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { createClient } from 'contentful'; | |
+import Helmet from 'react-helmet'; | |
return ( | |
<React.Fragment> | |
+ <Helmet title={this.state.data.title} /> | |
<h1>{this.state.data.title}</h1> | |
{this.state.data.content} | |
</React.Fragment> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
render() { | |
- console.log(this.state.data); | |
- return <p>Post</p>; | |
+ if (!this.state.data) return null; | |
+ | |
+ return ( | |
+ <React.Fragment> | |
+ <h1>{this.state.data.title}</h1> | |
+ {this.state.data.content} | |
+ </React.Fragment> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { createClient } from 'contentful'; | |
class Post extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
data: null | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1 className="App-title">Welcome to React</h1> | |
- <Link to="/">Home</Link> <Link to="/post/">Post</Link> | |
</header> | |
<Switch> | |
<Route exact path="/" component={Home} /> | |
- <Route path="/post/" component={Post} /> | |
+ <Route path="/post/:id" component={Post} /> | |
</Switch> | |
</div> | |
</BrowserRouter> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
+import { Link } from 'react-router-dom'; | |
import { createClient } from 'contentful'; | |
class Home extends React.Component { | |
return this.state.posts.map(post => { | |
console.log(post); | |
- return <p>Post</p>; | |
+ return ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { createClient } from 'contentful'; | |
class Home extends React.Component { | |
state = { | |
posts: [] | |
}; | |
componentWillMount() { | |
const client = createClient({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
+import { createClient } from 'contentful'; | |
class Home extends React.Component { | |
+ state = { | |
+ posts: [] | |
+ }; | |
+ | |
+ componentWillMount() { | |
+ const client = createClient({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
-import ReactDOM from 'react-dom'; | |
+import { hydrate, render } from 'react-dom'; | |
import './index.css'; | |
import App from './App'; | |
-import registerServiceWorker from './registerServiceWorker'; | |
-ReactDOM.render(<App />, document.getElementById('root')); | |
-registerServiceWorker(); | |
+const rootElement = document.getElementById('root'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
}, | |
"scripts": { | |
"start": "react-scripts start", | |
"build": "react-scripts build", | |
+ "postbuild": "react-snap", | |
"test": "react-scripts test --env=jsdom", | |
"eject": "react-scripts eject" | |
} |
NewerOlder