Skip to content

Instantly share code, notes, and snippets.

View johnbeadle's full-sized avatar

John Beadle johnbeadle

  • Cirencester
View GitHub Profile
import React, { Component } from "react";
import logo from "./logo.svg";
import "./App.css";
const Child = ({ onClick }) => <button onClick={onClick}>Click me</button>;
class Parent extends Component {
field = "hello";
handleClick = e => {