views.react.components.App.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-starter-core Show documentation
Show all versions of micronaut-starter-core Show documentation
Generates Micronaut applications
// App.js
import React from 'react';
function App({name, url}) {
return (
Hello World!
Hello there {name}, I'm saying hi from SSR React!
URL is {url}
);
}
export default App;