Last active
November 1, 2018 16:23
-
-
Save themgoncalves/c55e56f6e60fe5b52de81c1273a829f9 to your computer and use it in GitHub Desktop.
React SSR components implementation demo
This file contains hidden or 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'; | |
| export default function Title() { | |
| return ( | |
| <React.Fragment> | |
| <h1>React Server Side Render & Code Splitting</h1> | |
| <h2>identifying and loading required assets</h2> | |
| </React.Fragment> | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment