Skip to content

Instantly share code, notes, and snippets.

@varaprasadh
Created June 3, 2021 12:35
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 varaprasadh/288dd267b2d8665ef8586b781ed75557 to your computer and use it in GitHub Desktop.
Save varaprasadh/288dd267b2d8665ef8586b781ed75557 to your computer and use it in GitHub Desktop.
import React, { ReactElement } from 'react'
import { render } from 'react-dom';
interface Props {
}
function NewTab({}: Props): ReactElement {
return (
<div>
<h1>Hello world, this is new Tab page</h1>
</div>
)
}
export default NewTab;
render(<NewTab />, document.getElementById('app'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment