frigate/web/src/routes/index.js

55 lines
1.4 KiB
JavaScript
Raw Normal View History

2022-02-26 22:11:00 +03:00
export async function getCameraMap(_url, _cb, _props) {
2021-02-08 00:46:05 +03:00
const module = await import('./CameraMap.jsx');
return module.default;
}
2022-02-26 22:11:00 +03:00
export async function getCamera(_url, _cb, _props) {
2021-02-08 00:46:05 +03:00
const module = await import('./Camera.jsx');
return module.default;
}
2022-02-26 22:11:00 +03:00
export async function getCameraV2(_url, _cb, _props) {
2022-02-27 17:04:12 +03:00
const module = await import('./Camera_V2.jsx');
return module.default;
}
2022-02-26 22:11:00 +03:00
export async function getBirdseye(_url, _cb, _props) {
2021-06-12 17:55:40 +03:00
const module = await import('./Birdseye.jsx');
return module.default;
}
2022-02-26 22:11:00 +03:00
export async function getEvents(_url, _cb, _props) {
const module = await import('./Events.jsx');
2021-02-08 00:46:05 +03:00
return module.default;
}
2022-02-26 22:11:00 +03:00
export async function getRecording(_url, _cb, _props) {
2021-05-28 20:13:48 +03:00
const module = await import('./Recording.jsx');
return module.default;
}
2022-11-20 17:56:48 +03:00
export async function getSystem(_url, _cb, _props) {
const module = await import('./System.jsx');
2021-02-08 00:46:05 +03:00
return module.default;
}
export async function getStorage(_url, _cb, _props) {
const module = await import('./Storage.jsx');
return module.default;
}
export async function getConfig(_url, _cb, _props) {
const module = await import('./Config.jsx');
return module.default;
}
export async function getLogs(_url, _cb, _props) {
const module = await import('./Logs.jsx');
return module.default;
}
2022-02-26 22:11:00 +03:00
export async function getStyleGuide(_url, _cb, _props) {
2021-02-08 00:46:05 +03:00
const module = await import('./StyleGuide.jsx');
return module.default;
}