admin-on-rest-fr05t1k
Version:
A frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI
18 lines (14 loc) • 390 B
JavaScript
import React from 'react';
import { CardActions } from 'material-ui/Card';
import { ListButton } from '../button';
const cardActionStyle = {
zIndex: 2,
display: 'inline-block',
float: 'right',
};
const CreateActions = ({ basePath }) => (
<CardActions style={cardActionStyle}>
<ListButton basePath={basePath} />
</CardActions>
);
export default CreateActions;