mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-26 19:06:11 +01:00
00ff76a0b9
* rearrange event route and splitted into several components * useIntersectionObserver * re-arrange * searchstring improvement * added xs tailwind breakpoint * useOuterClick hook * cleaned up * removed some video controls for mobile devices * lint * moved hooks to global folder * moved buttons for small devices * added button groups Co-authored-by: Bernt Christian Egeland <cbegelan@gmail.com>
40 lines
1015 B
JavaScript
40 lines
1015 B
JavaScript
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;
|
|
}
|
|
|
|
export async function getBirdseye(url, cb, props) {
|
|
const module = await import('./Birdseye.jsx');
|
|
return module.default;
|
|
}
|
|
|
|
export async function getEvents(url, cb, props) {
|
|
const module = await import('./Events');
|
|
return module.default;
|
|
}
|
|
|
|
export async function getRecording(url, cb, props) {
|
|
const module = await import('./Recording.jsx');
|
|
return module.default;
|
|
}
|
|
|
|
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;
|
|
}
|