Skip to content

Instantly share code, notes, and snippets.

View hurmantrout's full-sized avatar

hurmantrout

  • irc.libera.chat #perl
View GitHub Profile
@JoshK2
JoshK2 / crcl-button.tsx
Last active September 28, 2021 08:29
Create React typescript components library - simple button
import React, { Component } from 'react'
import './button.scss'
type State = {}
type Props = {
text?: string,
disable?: boolean,
className?: string,
onClick: Function
}