1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-13 23:48:55 +01:00
fab-manager/test/frontend/__fixtures__/reservation_contexts.ts

9 lines
219 B
TypeScript
Raw Normal View History

2023-07-20 16:55:22 +02:00
import { ReservationContext } from 'models/reservation';
const reservationContexts: Array<ReservationContext> = [
{ id: 1, name: 'Research' },
{ id: 2, name: 'Pedagogical' }
];
export default reservationContexts;