Skip to content

Instantly share code, notes, and snippets.

@nikolalsvk
Created May 5, 2021 18:00
Show Gist options
  • Save nikolalsvk/e875b5e97a80584d99e25f9f038a56c3 to your computer and use it in GitHub Desktop.
Save nikolalsvk/e875b5e97a80584d99e25f9f038a56c3 to your computer and use it in GitHub Desktop.
import React from "react"
interface Props {}
const NewComponent = (props: Props) => {
return (
<>
<div></div>
</>
)
}
export default NewComponent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment