mirror of
https://github.com/p-stream/p-stream.git
synced 2026-05-13 13:31:14 +00:00
6 lines
164 B
TypeScript
6 lines
164 B
TypeScript
import { usePlayerStore } from "@/stores/player/store";
|
|
|
|
export function Title() {
|
|
const title = usePlayerStore((s) => s.meta?.title);
|
|
return <p>{title}</p>;
|
|
}
|