Unverified Commit 6080facb authored by Eric Rosenbaum's avatar Eric Rosenbaum Committed by GitHub

Merge pull request #5171 from ericrosenbaum/fix-components-page

Fix components page
parents a3a85621 23305537
...@@ -4,47 +4,53 @@ ...@@ -4,47 +4,53 @@
"type": "project", "type": "project",
"title": "Project", "title": "Project",
"thumbnailUrl": "", "thumbnailUrl": "",
"creator": "", "author": "",
"href": "#" "href": "#",
"stats": {"loves": 0, "remixes": 0}
}, },
{ {
"id": 2, "id": 2,
"type": "project", "type": "project",
"title": "Project", "title": "Project",
"thumbnailUrl": "", "thumbnailUrl": "",
"creator": "", "author": "",
"href": "#" "href": "#",
"stats": {"loves": 0, "remixes": 0}
}, },
{ {
"id": 3, "id": 3,
"type": "project", "type": "project",
"title": "Project", "title": "Project",
"thumbnailUrl": "", "thumbnailUrl": "",
"creator": "", "author": "",
"href": "#" "href": "#",
"stats": {"loves": 0, "remixes": 0}
}, },
{ {
"id": 4, "id": 4,
"type": "project", "type": "project",
"title": "Project", "title": "Project",
"thumbnailUrl": "", "thumbnailUrl": "",
"creator": "", "author": "",
"href": "#" "href": "#",
"stats": {"loves": 0, "remixes": 0}
}, },
{ {
"id": 5, "id": 5,
"type": "project", "type": "project",
"title": "Project", "title": "Project",
"thumbnailUrl": "", "thumbnailUrl": "",
"creator": "", "author": "",
"href": "#" "href": "#",
"stats": {"loves": 0, "remixes": 0}
}, },
{ {
"id": 6, "id": 6,
"type": "project", "type": "project",
"title": "Project", "title": "Project",
"thumbnailUrl": "", "thumbnailUrl": "",
"creator": "", "author": "",
"href": "#" "href": "#",
"stats": {"loves": 0, "remixes": 0}
} }
] ]
...@@ -5,6 +5,7 @@ const Page = require('../../components/page/www/page.jsx'); ...@@ -5,6 +5,7 @@ const Page = require('../../components/page/www/page.jsx');
const Box = require('../../components/box/box.jsx'); const Box = require('../../components/box/box.jsx');
const Button = require('../../components/forms/button.jsx'); const Button = require('../../components/forms/button.jsx');
const Carousel = require('../../components/carousel/carousel.jsx'); const Carousel = require('../../components/carousel/carousel.jsx');
const Form = require('../../components/forms/form.jsx');
const Input = require('../../components/forms/input.jsx'); const Input = require('../../components/forms/input.jsx');
const Spinner = require('../../components/spinner/spinner.jsx'); const Spinner = require('../../components/spinner/spinner.jsx');
...@@ -16,11 +17,13 @@ const Components = () => ( ...@@ -16,11 +17,13 @@ const Components = () => (
<h1>Button</h1> <h1>Button</h1>
<Button>I love button</Button> <Button>I love button</Button>
<h1>Form</h1> <h1>Form</h1>
<Input <Form>
maxLength="30" <Input
name="test" maxLength="30"
type="text" name="test"
/> type="text"
/>
</Form>
<h1>Box Component</h1> <h1>Box Component</h1>
<Box <Box
more="Cat Gifs" more="Cat Gifs"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment