From c14fe8efe839745cf355fd6a7617659b425f9812 Mon Sep 17 00:00:00 2001 From: Kimmo Puputti Date: Thu, 5 Jan 2017 20:53:41 +0200 Subject: [PATCH] Fix ServerRouter props --- src/index.js | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/index.js b/src/index.js index 2e7f3093..23eb67c0 100644 --- a/src/index.js +++ b/src/index.js @@ -12,11 +12,14 @@ const ClientApp = () => ( ); -const ServerApp = (props) => ( - - - -); +const ServerApp = (props) => { + const { url, context } = props; + return ( + + + + ); +}; if (typeof window !== 'undefined') { ReactDOM.render(, document.getElementById('root'));