UNPKG

admin-on-rest-fr05t1k

Version:

A frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI

13 lines (10 loc) 350 B
import React from 'react'; import { CardTitle } from 'material-ui/Card'; import withWidth from 'material-ui/utils/withWidth'; import AppBarMobile from './AppBarMobile'; const ViewTitle = ({ title, width }) => ( width === 1 ? <AppBarMobile title={title} /> : <CardTitle title={title} /> ); export default withWidth()(ViewTitle);