mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +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;
|