more database work, added search route, starting frontend new location form

This commit is contained in:
2022-04-02 23:15:23 -04:00
parent cc60aa59d5
commit 03dd723c57
14 changed files with 431 additions and 1110 deletions

View File

@@ -0,0 +1,26 @@
import React, {useState, useEffect} from 'react';
import { Text, Title, TextInput, Button, NumberInput, } from '@mantine/core'
import { DatePicker } from '@mantine/dates';
import { useForm } from '@mantine/form';
import { useAtom } from 'jotai';
import { serverConfigAtom } from '../../state/main'
function LocationForm(props) {
const {location, modify: bool} = props
const [opened, setOpened] = useState(false);
const [serverConfig] = useAtom(serverConfigAtom)
return (
<>
<Title>Location Form</Title>
<Text>This is the homepage!</Text>
</>
);
}
export default LocationForm;