mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
17 lines
316 B
React
17 lines
316 B
React
![]() |
const Layout = props => {
|
||
|
|
||
|
const Header = Telescope.getComponent("Header");
|
||
|
const Footer = Telescope.getComponent("Footer");
|
||
|
|
||
|
return (
|
||
|
<div>
|
||
|
<Header/>
|
||
|
<a href={FlowRouter.path("newPost")}>New Post</a>
|
||
|
<hr/>
|
||
|
{props.children}
|
||
|
<Footer/>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
module.exports = Layout;
|