File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ import * as Space from "react-spaces";
33
44export default function Home ( ) {
55 return (
6- < Space . SSR >
6+ < >
7+ < Space . SSR />
78 < Head >
89 < title > Create Next App</ title >
910 < meta name = "description" content = "Generated by create next app" />
@@ -27,6 +28,6 @@ export default function Home() {
2728 < Space . Fill centerContent = { Space . CenterType . HorizontalVertical } > Hello world</ Space . Fill >
2829 </ Space . Fill >
2930 </ Space . ViewPort >
30- </ Space . SSR >
31+ </ >
3132 ) ;
3233}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import * as React from "react";
22import { enabledSsrSupport } from "../core-react" ;
33import css from "../styles.css" ;
44
5- export const SSR : React . FC < { children : React . ReactNode } > = ( { children } ) => {
5+ export const SSR : React . FC < { children ? : React . ReactNode } > = ( { children } ) => {
66 enabledSsrSupport ( ) ;
77 return (
88 < >
You can’t perform that action at this time.
0 commit comments