diff --git a/src/components/LocationForm.js b/src/components/LocationForm.js index 9f0f8fa..d3ebfa2 100644 --- a/src/components/LocationForm.js +++ b/src/components/LocationForm.js @@ -1,23 +1,31 @@ -import React from 'react'; -import axios from 'axios'; +import React, { useState } from "react"; +import axios from "axios"; +import { Form } from "react-bootstrap"; const LocationForm = () => { - -} + const [locationName, setLocationName] = useState(""); + const [countries, setCountries] = useState([]); + const [selectedCountry, setSelectedCountry] = useState(""); +}; return ( -
-
- - -
-
- - -
-
-) +
+ + Name of location: + + + + Country: + + + + +
+); -export default LocationForm; \ No newline at end of file +export default LocationForm;