OrderableList had the wrong function name

This commit is contained in:
DrMint 2022-04-12 12:00:10 +02:00
parent 2a784fd0ec
commit 049a2e2044
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ interface Props {
onChange?: (items: Map<string, string>) => void;
}
export default function LanguageSwitcher(props: Props): JSX.Element {
export default function OrderableList(props: Props): JSX.Element {
const [items, setItems] = useState<Map<string, string>>(props.items);
useEffect(() => {