mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-06 21:46:17 +01:00
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
|
import { EventTheme } from 'models/event';
|
||
|
|
||
|
const themes: Array<EventTheme> = [
|
||
|
{ id: 1, name: 'Fabric week' },
|
||
|
{ id: 2, name: 'Everyone at the Fablab' }
|
||
|
];
|
||
|
|
||
|
export default themes;
|