Reconmap/web-client

View on GitHub
src/components/ui/themes/index.ts

Summary

Maintainability
A
0 mins
Test Coverage

interface Theme {
    id: string;
    name: string;
}

const ThemeList: Theme[] = [
    {
        id: "dark",
        name: "Dark",
    },
    {
        id: "light",
        name: "Light"
    }
];

export { ThemeList };