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