Summary:
- adds favicon
- adds page titles
- fixes bug in react native code gen

allow-large-files

Reviewed By: emilsjolander

Differential Revision: D7013492

fbshipit-source-id: d29a56a7caddf0da4fb19a0ba443c6906ccfff56
This commit is contained in:
Daniel Büchele
2018-02-19 02:08:18 -08:00
committed by Facebook Github Bot
parent 7f44ec512e
commit e024943c4b
178 changed files with 614 additions and 404 deletions

View File

@@ -15,15 +15,17 @@ import {Row, Col} from 'antd';
import './index.css';
export default () => (
<Page>
<Row className="playground-page">
<Page title="Playground">
<Row className="playground-page">
<Col lg={24} md={0} sm={0} xs={0}>
<Playground height="100%" selectedNodePath={[]} persist />
</Col>
<Playground height="100%" selectedNodePath={[]} persist />
</Col>
<Col lg={0} xs={24} className="error-container">
<p className="error-text">Sorry! The playground only works on larger displays currently.</p>
</Col>
</Row>
<Col lg={0} xs={24} className="error-container">
<p className="error-text">
Sorry! The playground only works on larger displays currently.
</p>
</Col>
</Row>
</Page>
);