mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
9 lines
249 B
TypeScript
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>;
|
|
}
|