Tweak playground on landing page

Reviewed By: danielbuechele

Differential Revision: D7009909

fbshipit-source-id: a2734466efed6b9dc21f047be011b427bf67f830
This commit is contained in:
Emil Sjölander
2018-02-16 07:09:41 -08:00
committed by Facebook Github Bot
parent a1697d2307
commit 9b3104577c

View File

@@ -23,6 +23,53 @@ import ComponentKitLogo from './logos/componentkit.png';
import Link from 'gatsby-link'; import Link from 'gatsby-link';
import Footer from '../components/Footer'; import Footer from '../components/Footer';
const playgroundInitialState = {
"width":500,
"height":500,
"alignItems":1,
"padding":{
"top":"20",
"right":"20",
"bottom":"20",
"left":"20"
},
"children":[
{
"width":100,
"height":100,
"minWidth":null,
"maxWidth":null,
"minHeight":null,
"maxHeight":null
},
{
"width":100,
"height":100,
"margin":{
"right":"20",
"left":"20"
},
"flexGrow":"1",
"minWidth":null,
"maxWidth":null,
"minHeight":null,
"maxHeight":null
},
{
"width":100,
"height":100,
"minWidth":null,
"maxWidth":null,
"minHeight":null,
"maxHeight":null
}
],
"minWidth":null,
"maxWidth":null,
"minHeight":null,
"maxHeight":null
};
const HeroSection = () => ( const HeroSection = () => (
<Padded> <Padded>
<Row className="hero"> <Row className="hero">
@@ -58,7 +105,7 @@ const HeroSection = () => (
const PlaygroundSection = () => ( const PlaygroundSection = () => (
<Row> <Row>
<Col lg={24} md={0} sm={0} xs={0}> <Col lg={24} md={0} sm={0} xs={0}>
<Playground selectedNodePath={[]} showGuides={false} height={601} /> <Playground selectedNodePath={[]} showGuides={true} height={601} layoutDefinition={playgroundInitialState} />
</Col> </Col>
</Row> </Row>
); );