MCPcopy Create free account
hub / github.com/ccj-007/easy-lowcode / Button

Function Button

src/components/Button.tsx:9–14  ·  view source on GitHub ↗
(props: Props)

Source from the content-addressed store, hash-verified

7}
8
9const Button: FC = (props: Props) => {
10 const { data, id } = props
11 return (
12 <button id={id} className='e-button' {...data}>{data && data.children ? data.children : "默认按钮"}</button>
13 )
14}
15
16export default Button

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected