6 lines
117 B
TypeScript
6 lines
117 B
TypeScript
|
interface Props {}
|
||
|
|
||
|
export default function FediAuthModal(props: Props) {
|
||
|
return <div>Component goes here</div>;
|
||
|
}
|