mirror of https://github.com/kern/filepizza
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
525 B
JavaScript
24 lines
525 B
JavaScript
import FrozenHead from 'react-frozenhead';
|
|
import React from 'react';
|
|
import { RouteHandler } from 'react-router';
|
|
|
|
export default class App extends React.Component {
|
|
|
|
render() {
|
|
return <html lang="en" data-bootstrap={this.props.data}>
|
|
<FrozenHead>
|
|
<meta charSet="utf-8" />
|
|
<title>WebDrop - Send Files, Easily</title>
|
|
|
|
<link rel="stylesheet" href="/index.css" />
|
|
<script src="/app.js" />
|
|
</FrozenHead>
|
|
|
|
<body>
|
|
<RouteHandler />
|
|
</body>
|
|
</html>;
|
|
}
|
|
|
|
}
|