14 lines
282 B
TypeScript
14 lines
282 B
TypeScript
![]() |
import { InstallAppButtonProps } from "../../types";
|
||
|
|
||
|
export default function InstallAppButton(props: InstallAppButtonProps) {
|
||
|
return (
|
||
|
<>
|
||
|
{props.render({
|
||
|
onClick() {
|
||
|
alert("You can put your install code in here!");
|
||
|
},
|
||
|
})}
|
||
|
</>
|
||
|
);
|
||
|
}
|