mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
19 lines
534 B
JavaScript
19 lines
534 B
JavaScript
import React, { PropTypes } from 'react';
|
|
import { Card, CardTitle } from 'react-mdl';
|
|
|
|
import FormComponent from './form';
|
|
import { styles as commonStyles } from '../common';
|
|
|
|
const FormAddComponent = ({ title, ...formProps }) => (
|
|
<Card className={commonStyles.fullwidth} style={{ overflow: 'visible' }}>
|
|
<CardTitle style={{ paddingTop: '24px' }}>{title}</CardTitle>
|
|
<FormComponent {...formProps}/>
|
|
</Card>
|
|
);
|
|
|
|
FormAddComponent.propTypes = {
|
|
title: PropTypes.string,
|
|
};
|
|
|
|
export default FormAddComponent;
|