Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Last active April 7, 2019 02:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isacjunior/b1be13bd2241c93894f6c676103a97fa to your computer and use it in GitHub Desktop.
Save isacjunior/b1be13bd2241c93894f6c676103a97fa to your computer and use it in GitHub Desktop.
import React from 'react'
interface Props {
counter: number
}
function Counter({ counter }: Props) {
return <p>{counter}</p>
}
export default Counter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment