added sample component, and sample style

This commit is contained in:
Ben Elferink
2020-12-25 19:26:21 +02:00
parent 5606f0203e
commit cc755d1deb
3 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
import React from 'react';
function HelloWorld() {
return <div>Hello World - React.js</div>;
}
export default HelloWorld;