setting up landing page and getting going
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
interface Props {
|
||||
name: string;
|
||||
}
|
||||
|
||||
export const HelloWorld = ({ name }: Props) => {
|
||||
return <div>Hello {name}</div>;
|
||||
};
|
||||
Reference in New Issue
Block a user