Jaime Ramírez
2020-06-11 d4efcf556bee5599b87a18da9420df2143e1c757
adopt-a-pup/web-app/src/Views/AnimalCreateView.tsx
@@ -4,10 +4,12 @@
    PageSection, PageSectionVariants, Text, TextContent, Card, CardBody
} from "@patternfly/react-core";
import AnimalCreateForm from "../Components/AnimalCreateForm";
import {ShelterService} from "../Services/ShelterService";
type AnimalCreateViewProps = {
    animalService: AnimalService;
    shelterService: ShelterService;
}
@@ -25,7 +27,10 @@
                <PageSection>
                    <Card>
                        <CardBody>
                            <AnimalCreateForm animalService={this.props.animalService} />
                            <AnimalCreateForm
                                animalService={this.props.animalService}
                                shelterService={this.props.shelterService}
                            />
                        </CardBody>
                    </Card>
                </PageSection>