blob: fbd6ee08d5f87c0b639e10883b866b8509f58c3c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import * as React from "react";
export interface ButtonProps {
children: React.ReactNode;
}
export function Button(props: ButtonProps) {
return <button>{props.children}</button>;
}
Button.displayName = "Button";
|