expo-web/src/client/components/Root.tsx

11 lines
148 B
TypeScript
Raw Normal View History

2020-11-20 18:25:46 +00:00
import React from 'react';
/**
* @return {jsx} The root component
*/
export default function Root() {
return (
<div>Hello World !</div>
);
}