mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-12 01:17:04 +02:00
12 lines
325 B
JavaScript
12 lines
325 B
JavaScript
import React from 'react';
|
|
import CreateProject from '../../component/project/create-project-container';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const render = ({ history }) => <CreateProject title="Create Project" history={history} />;
|
|
|
|
render.propTypes = {
|
|
history: PropTypes.object.isRequired,
|
|
};
|
|
|
|
export default render;
|