1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-06 21:46:17 +01:00
fab-manager/test/frontend/__fixtures__/event_themes.ts

9 lines
185 B
TypeScript
Raw Normal View History

import { EventTheme } from 'models/event';
const themes: Array<EventTheme> = [
{ id: 1, name: 'Fabric week' },
{ id: 2, name: 'Everyone at the Fablab' }
];
export default themes;