12 lines
211 B
TypeScript
12 lines
211 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
import Section from '@prokyon/components/Section';
|
|
|
|
export const WelcomePage = () => {
|
|
return (
|
|
<div className="welcome">
|
|
Seedling app generator.
|
|
</div>
|
|
);
|
|
};
|