mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
12 lines
168 B
TypeScript
12 lines
168 B
TypeScript
|
import Heading from "@/components/ui/heading";
|
||
|
|
||
|
function Storage() {
|
||
|
return (
|
||
|
<>
|
||
|
<Heading as="h2">Storage</Heading>
|
||
|
</>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default Storage;
|