0
owncast/web/components/ExternalActionButton.tsx

10 lines
249 B
TypeScript
Raw Normal View History

import { ExternalAction } from '../interfaces/external-action.interface';
interface Props {
action: ExternalAction;
}
export default function ExternalActionButton(props: Props) {
return <div>External action button component goes here</div>;
}