owncast/web/components/modals/AuthModal.tsx

6 lines
113 B
TypeScript
Raw Normal View History

interface Props {}
export default function AuthModal(props: Props) {
return <div>Component goes here</div>;
}