owncast/web/components/PageLogo.tsx

8 lines
140 B
TypeScript
Raw Normal View History

interface Props {
url: string;
}
export default function PageLogo(props: Props) {
return <div>Pimary logo component goes here</div>;
}