boilerplate/src/client/components/Root.tsx

13 lines
164 B
TypeScript
Raw Normal View History

2021-01-03 15:08:06 +00:00
import React from 'react';
/**
* @return {jsx} The root component
*/
export default function Root() {
return (
<div>
<h1>Hello World !</h1>
</div>
);
}