mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-13 23:48:55 +01:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import { ReservationContext } from 'models/reservation';
|
|
|
|
const reservationContexts: Array<ReservationContext> = [
|
|
{ id: 1, name: 'Research' },
|
|
{ id: 2, name: 'Pedagogical' }
|
|
];
|
|
|
|
export default reservationContexts;
|