@orderly.network/hooks
ConnectionProvider
OrderlyAppProvider
Withdraw
import { Withdraw } from "@orderly.network/react"; export const App = () => { return <Withdraw />; };
withdraw
import { Withdraw, modal } from "@orderly.network/react"; const { dialog } = modal; export const App = () => { return ( <Button onClick={() => { dialog({ title: "Withdraw", content: <Withdraw /> }); }} > Open deposit dialog </Button> ); };
(data: any) => void
() => void