Move the header back outside of the internal components.

master
Tom Hacohen 7 years ago
parent 132f63e2a6
commit af921e1b28

@ -44,18 +44,22 @@ export class EteSyncContext extends React.Component {
}
return (
<Switch>
<Route
path={routeResolver.getRoute('home')}
exact={true}
render={() => <JournalList etesync={this.state as EteSyncContextType} />}
/>
<Route
path={routeResolver.getRoute('journals._id')}
exact={true}
render={({match}) => <JournalView match={match} etesync={this.state as EteSyncContextType} />}
/>
</Switch>
<div>
<div className="App-header">
<h2>Welcome to React</h2>
</div>
<Switch>
<Route
path={routeResolver.getRoute('home')}
exact={true}
render={() => <JournalList etesync={this.state as EteSyncContextType} />}
/>
<Route
path={routeResolver.getRoute('journals._id')}
render={({match}) => <JournalView match={match} etesync={this.state as EteSyncContextType} />}
/>
</Switch>
</div>
);
}
}

@ -55,9 +55,6 @@ export class JournalList extends React.Component {
return (
<div>
<div className="App-header">
<h2>Welcome to React</h2>
</div>
<ul>
{journals}
</ul>

@ -49,9 +49,6 @@ export class JournalView extends React.Component {
return (
<div>
<div className="App-header">
<h2>Welcome to React</h2>
</div>
<ul>
{journals}
</ul>

Loading…
Cancel
Save