Skip to content

Commit 8334f32

Browse files
author
Alexandra Zwinger
committed
Add basic SearchMeetingForm
1 parent 4c642da commit 8334f32

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/form/SearchMeetingForm.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
11
import React, {useEffect, useState} from 'react';
22
import {Dialog, DialogTitle, DialogContent, IconButton, Select, MenuItem} from "@mui/material";
3-
import dayjs from 'dayjs';
4-
import {MeetingDto} from "../dtos/MeetingDto";
53
import CloseIconPath from '../data/close_icon_red.png';
64
import {getModules} from "../api/ModuleApi";
75
import axiosInstance from "../AxiosConfig";
86

97
interface MeetingFormProps {
108
open: boolean;
119
onClose: () => void;
12-
meeting?: MeetingDto;
1310
}
1411

15-
dayjs.locale('de');
16-
17-
export function SearchMeetingForm({open, onClose, meeting}: MeetingFormProps) {
12+
export function SearchMeetingForm({open, onClose}: MeetingFormProps) {
1813
const [modulNames, setModuleNames] = useState<string[]>([]);
1914

2015
const fetchModuleNames = async () => {

0 commit comments

Comments
 (0)