owncast/web/components/ExternalActionButton.tsx
2022-04-27 23:19:45 -07:00

9 lines
249 B
TypeScript

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>;
}