0.1.3 • Published 7 months ago

babylon-react v0.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Overview

Usage

import { BabylonConnectButton, BabylonProviders } from 'babylon-react';

export default function HomePage() {
  return (
    <BabylonProviders>
      <main className="flex min-h-screen flex-col items-center justify-center p-24">
        <h1 className="text-4xl font-bold mb-4">Welcome to My App</h1>
        <p className="text-gray-600">Get started by editing this page</p>
        <BabylonConnectButton>Connect Wallet</BabylonConnectButton>
      </main>
    </BabylonProviders>
  );
}