docs: fix react error in homepage getting started

Signed-off-by: Tobias Graf <tobiasgraf87@gmail.com>
This commit is contained in:
Tobias Graf
2023-06-26 08:39:30 +02:00
committed by blam
parent 252297093b
commit df5fa4a219
+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>
);