Removed unused imports

This commit is contained in:
pepper 2021-01-26 21:02:30 -05:00
parent b627aedf90
commit d738049742
2 changed files with 1 additions and 3 deletions

View File

@ -1,6 +1,5 @@
import React, { Component } from "react";
import ReportSingleMigration from "../common/Forms/ReportSingleMigration";
import { callAPI } from "../../actions/API";
import { GenericForm } from "../common/Forms/GenericForm";

View File

@ -11,7 +11,6 @@ import {
import classnames from "classnames";
import EmailBooking from "./EmailBooking";
import { CPanelForm } from "./CPanelForm";
import { GenericForm } from "./GenericForm";
const FormPage = ({ timeslots, item }) => {
@ -53,7 +52,7 @@ const FormPage = ({ timeslots, item }) => {
<Row>
<Col>
{/* <CPanelForm timeslots={timeslots} key={timeslots.id} /> */}
<GenericForm timeslots={timeslots} key={timeslots.id}/>
<GenericForm timeslots={timeslots} key={timeslots.id} />
</Col>
</Row>
</TabPane>