UNPKG

@ftrack/react-toolbox

Version:

A set of React components implementing Google's Material Design specification with the power of CSS Modules.

21 lines (18 loc) 409 B
import React from 'react'; import AppBar from '../../components/app_bar'; const AppBarTest = () => ( <section> <h5>AppBar</h5> <br/> <AppBar title='Title' /> <br/> <AppBar leftIcon='menu' title='Title' /> <br/> <AppBar leftIcon='arrow_back' title='Title' rightIcon='close' /> <br/> <AppBar> Custom content </AppBar> </section> ); export default AppBarTest;