File size: 383 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import Head from 'calypso/components/head';
import BrowsehappyBody from 'calypso/landing/browsehappy';
import { chunkCssLinks } from './utils';
export default function Browsehappy( { entrypoint, from } ) {
return (
<html lang="en">
<Head title="Unsupported Browser — WordPress.com">{ chunkCssLinks( entrypoint ) }</Head>
<BrowsehappyBody from={ from } />
</html>
);
}
|