Skip to content

Instantly share code, notes, and snippets.

@themgoncalves
Last active November 1, 2018 16:23
Show Gist options
  • Select an option

  • Save themgoncalves/c55e56f6e60fe5b52de81c1273a829f9 to your computer and use it in GitHub Desktop.

Select an option

Save themgoncalves/c55e56f6e60fe5b52de81c1273a829f9 to your computer and use it in GitHub Desktop.
React SSR components implementation demo
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