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