import React from 'react';

const Newtab: React.FC<{}> = () => {
  return <h1>Hello World!</h1>;
};

export default Newtab;
