diff --git a/components/CopyButton.js b/components/CopyButton.js new file mode 100644 index 0000000..1a96693 --- /dev/null +++ b/components/CopyButton.js @@ -0,0 +1,18 @@ +import React from 'react' + +// constants +const STATUS = { + IDLE: 'IDLE', + LOADING: 'LOADING', + DEBOUNCED: 'DEBOUNCED' +} + +class CopyButton extends React.Component { + constructor(props) { + super(props) + + this.state = { + status: STATUS.IDLE + } + } +} \ No newline at end of file