MCPcopy Index your code
hub / github.com/code100x/chess / ButtonProps

Interface ButtonProps

packages/ui/src/button.tsx:5–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import { ReactNode } from 'react';
4
5interface ButtonProps {
6 children: ReactNode;
7 className?: string;
8 appName: string;
9}
10
11export const Button = ({ children, className, appName }: ButtonProps) => {
12 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected