Build quickly with simple hooks
The library abstracts XRPL.js to make building apps as fast as possible. To create a quick app and connect to the XRPL, all we need is to wrap our application in the XRPLClient hook and we’re off to the races:
export default function App() {
return (
<div className="App">
<XRPLClient network={Networks.Testnet}>
<MainApp />
</XRPLClient>
</div>
);
}