MCPcopy Index your code
hub / github.com/diffbot/code-gpt-docs / Button

Function Button

src/testing/test.js:8–14  ·  view source on GitHub ↗
({ onClick, children })

Source from the content-addressed store, hash-verified

6import React from 'react';
7
8const Button = ({ onClick, children }) => {
9 return (
10 <button onClick={onClick}>
11 {children}
12 </button>
13 );
14};
15
16export default Button;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected