Merge pull request #18424 from 42tg/patch-1

docs: fix react error in homepage getting started
This commit is contained in:
Ben Lambert
2023-06-26 12:10:52 +02:00
committed by GitHub
+1 -1
View File
@@ -40,7 +40,7 @@ Inside your `packages/app` directory, create a new file where our new homepage c
```tsx
import React from 'react';
export const homePage = (
export const HomePage = () => (
/* We will shortly compose a pretty homepage here. */
<h1>Welcome to Backstage!</h1>
);