Files
frigate/web/src/routes/index.js
T

40 lines
1015 B
JavaScript
Raw Normal View History

2021-02-07 13:46:05 -08:00
export async function getCameraMap(url, cb, props) {
const module = await import('./CameraMap.jsx');
return module.default;
}
export async function getCamera(url, cb, props) {
const module = await import('./Camera.jsx');
return module.default;
}
export async function getEvent(url, cb, props) {
const module = await import('./Event.jsx');
return module.default;
}
2021-06-12 09:55:40 -05:00
export async function getBirdseye(url, cb, props) {
const module = await import('./Birdseye.jsx');
return module.default;
}
2021-02-07 13:46:05 -08:00
export async function getEvents(url, cb, props) {
2021-09-03 14:11:23 +02:00
const module = await import('./Events');
2021-02-07 13:46:05 -08:00
return module.default;
}
2021-05-28 13:13:48 -04:00
export async function getRecording(url, cb, props) {
const module = await import('./Recording.jsx');
return module.default;
}
2021-02-07 13:46:05 -08:00
export async function getDebug(url, cb, props) {
const module = await import('./Debug.jsx');
return module.default;
}
export async function getStyleGuide(url, cb, props) {
const module = await import('./StyleGuide.jsx');
return module.default;
}