owncast/web/components/chat/ChatModeratorNotification.tsx

7 lines
222 B
TypeScript
Raw Normal View History

2022-05-12 09:31:31 +03:00
/* eslint-disable @typescript-eslint/no-unused-vars */
interface Props {}
export default function ChatModerationNotification(props: Props) {
return <div>You are now a moderator notification component goes here</div>;
}