import React from 'react';
import EntityForm from '../shared/EntityForm';

export default ({ history }) => {
    const entityId = history.location.pathname.slice(1).split('/')[0];

    return <EntityForm entityId={entityId} history={history} isNew />;
};
