Extension styling

This commit is contained in:
Jip Fr
2024-01-10 21:04:31 +01:00
parent 4a08151fd8
commit f11b33fef4
9 changed files with 205 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
import { useVersion } from '~hooks/useVersion';
import './BottomLabel.css';
export function BottomLabel() {
const version = useVersion({ prefixed: true });
return (
<h3 className="bottom-label">
{version}
<div className="dot" />
movie-web
</h3>
);
}