Fix label position

This commit is contained in:
mrjvs
2024-02-07 17:27:04 +01:00
parent c0c733ecfc
commit b900fbdaa8
3 changed files with 25 additions and 4 deletions

View File

@@ -12,3 +12,9 @@ export function BottomLabel() {
</h3>
);
}
export function TopRightLabel() {
const version = useVersion({ prefixed: true });
return <h3 className="top-right-label">{version}</h3>;
}