export function Button()

in 01 - Core/03 - Stateless Functions.js [6:13]


export function Button(props : { width: number, onClick: function }) {
  return (
    <div>
      Fancy button
      <button onClick={props.onClick} style={{ width: props.width }} />
    </div>
  );
}