mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 10:08:57 +00:00
Change ReactSpa template to something more like a dashboard with sidebar navigation
This commit is contained in:
21
templates/ReactSpa/ClientApp/components/Layout.tsx
Normal file
21
templates/ReactSpa/ClientApp/components/Layout.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import * as React from 'react';
|
||||
import { NavMenu } from './NavMenu';
|
||||
|
||||
export interface LayoutProps {
|
||||
body: React.ReactElement<any>;
|
||||
}
|
||||
|
||||
export class Layout extends React.Component<LayoutProps, void> {
|
||||
public render() {
|
||||
return <div className="container-fluid">
|
||||
<div className="row">
|
||||
<div className="col-sm-3">
|
||||
<NavMenu />
|
||||
</div>
|
||||
<div className="col-sm-9">
|
||||
{ this.props.body }
|
||||
</div>
|
||||
</div>
|
||||
</div>;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user