Skip to content

Instantly share code, notes, and snippets.

@sherbakovdev
sherbakovdev / InscriptionButton.tsx
Created April 29, 2023 17:40
useOrdinalSafe React hook. Connect to a React app to make inscriptions.
"use client";
import * as React from "react";
import { useOrdinalSafe } from "@/hooks/useOrdinalSafe";
type Props = {
data: string;
};