blakeblackshear.frigate/web/src/routes/index.js

40 lines
1.0 KiB
JavaScript
Raw Normal View History

2022-02-26 20:11:00 +01:00
export async function getCameraMap(_url, _cb, _props) {
2021-02-07 22:46:05 +01:00
const module = await import('./CameraMap.jsx');
return module.default;
}
2022-02-26 20:11:00 +01:00
export async function getCamera(_url, _cb, _props) {
2021-02-07 22:46:05 +01:00
const module = await import('./Camera.jsx');
return module.default;
}
2022-02-26 20:11:00 +01:00
export async function getCameraV2(_url, _cb, _props) {
2022-02-27 15:04:12 +01:00
const module = await import('./Camera_V2.jsx');
return module.default;
}
2022-02-26 20:11:00 +01:00
export async function getBirdseye(_url, _cb, _props) {
2021-06-12 16:55:40 +02:00
const module = await import('./Birdseye.jsx');
return module.default;
}
2022-02-26 20:11:00 +01:00
export async function getEvents(_url, _cb, _props) {
const module = await import('./Events.jsx');
2021-02-07 22:46:05 +01:00
return module.default;
}
2022-02-26 20:11:00 +01:00
export async function getRecording(_url, _cb, _props) {
2021-05-28 19:13:48 +02:00
const module = await import('./Recording.jsx');
return module.default;
}
2022-02-26 20:11:00 +01:00
export async function getDebug(_url, _cb, _props) {
2021-02-07 22:46:05 +01:00
const module = await import('./Debug.jsx');
return module.default;
}
2022-02-26 20:11:00 +01:00
export async function getStyleGuide(_url, _cb, _props) {
2021-02-07 22:46:05 +01:00
const module = await import('./StyleGuide.jsx');
return module.default;
}