react-universally
Version:
A starter kit for universal react applications.
26 lines (20 loc) • 586 B
JavaScript
import React from 'react';
import Helmet from 'react-helmet';
import config from '../../../../config';
function HomeRoute() {
return (
<div>
<Helmet>
<title>Home</title>
</Helmet>
<h2>{config('welcomeMessage')}</h2>
<p>
This starter kit contains all the build tooling and configuration you
need to kick off your next universal React project, whilst containing a
minimal project set up allowing you to make your own architecture
decisions (Redux/Mobx etc).
</p>
</div>
);
}
export default HomeRoute;