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.
33 lines
977 B
JavaScript
33 lines
977 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" />
|
|
<meta property="og:url" content="http://file.pizza" />
|
|
<meta property="og:title" content="FilePizza - Send Files, Easily" />
|
|
<meta property="og:description" content="Peer-to-peer file transfers in your web browser." />
|
|
<meta property="og:image" content="http://file.pizza/images/fb.png" />
|
|
<title>FilePizza - Send Files, Easily</title>
|
|
|
|
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Quicksand:300,400,700" />
|
|
<link rel="stylesheet" href="/css" />
|
|
|
|
<script src="/js" />
|
|
|
|
</FrozenHead>
|
|
|
|
<body>
|
|
<RouteHandler />
|
|
<script>FilePizza()</script>
|
|
</body>
|
|
</html>
|
|
}
|
|
|
|
}
|