mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
5 lines
113 B
TypeScript
5 lines
113 B
TypeScript
interface Props {}
|
|
|
|
export default function AuthModal(props: Props) {
|
|
return <div>Component goes here</div>;
|
|
}
|