generator-springboot-hexagonal
Version:
A code generator for SpringBoot microservices in Hexagonal Architecture
14 lines (11 loc) • 360 B
JSX
import Layout from '@src/components/Layout';
import PageHeader from '@src/components/PageHeader';
const Home = () => (
<Layout>
<PageHeader title="Welcome to your new React App!" description="Made with Spring Hexagonal" />
<p>
Reference <code>README.md</code> for build instructions.
</p>
</Layout>
);
export default Home;