Remove unused implementations.

This commit is contained in:
codevictory
2022-01-17 21:25:51 +02:00
parent f0b65adb16
commit a368d90e24
2 changed files with 0 additions and 10 deletions

View File

@@ -1,6 +0,0 @@
import { LanguageItem } from '../types/languageItem';
export const languageItems: LanguageItem[] = [
{ label: "Suomi", value: "fi" },
{ label: "Englanti", value: "en" }
];

View File

@@ -1,4 +0,0 @@
export type LanguageItem = {
label: string;
value: string;
}