mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
interface Props {
|
|
url: string;
|
|
}
|
|
|
|
export default function PageLogo(props: Props) {
|
|
return <div>Pimary logo component goes here</div>;
|
|
}
|