/* eslint-disable react/prop-types */ import * as React from 'react'; import Button, { IconButton } from '../../components/button'; import Card, { CardActions, CardMedia, CardText, CardTitle } from '../../components/card'; const style = require('../style.css'); const dummyText = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.'; const Spacer: React.SFC = () =>
; const CardList: React.SFC = ({ children }) =>
    {children}
; const CardListItem: React.SFC = ({ component, name }) => (
  • {component}
    {name}
  • ); const cards: any = { basic: [{ name: 'Basic Card', component: ( {dummyText}