You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
299 B
TypeScript

import * as React from 'react';
import Paper from 'material-ui/Paper';
import './Container.css';
export default ({children}: {children: any}) => (
<div className="Container">
<Paper zDepth={2}>
<div className="Container-inner">
{children}
</div>
</Paper>
</div>
);