mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 06:27:19 +01:00
15 lines
223 B
TypeScript
15 lines
223 B
TypeScript
import React from 'react';
|
|
|
|
import Header from './Header';
|
|
|
|
export default function(props) {
|
|
return (
|
|
<div id="app">
|
|
<Header />
|
|
<div id="content">
|
|
{ props.children }
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|