@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
9 lines (6 loc) • 318 B
JavaScript
'use client'
import { jsx } from 'react/jsx-runtime';
import { forwardRef } from 'react';
const DynamicWidgetCard = forwardRef(({ children }, ref) => (jsx("div", { ref: ref, className: 'dynamic-widget-card', children: children })));
DynamicWidgetCard.displayName = 'DynamicWidgetCard';
export { DynamicWidgetCard };