From 73266b94438ec94111f0caf1a5eeea1e42cee22f Mon Sep 17 00:00:00 2001 From: Matt Travi Date: Sun, 25 Oct 2020 15:11:01 -0500 Subject: [PATCH] fix(homepage): wrapped the initial content in an `

` instead of a `
` --- templates/index.js | 2 +- test/integration/features/step_definitions/site-steps.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.js b/templates/index.js index 3d268a73..bd53ef5e 100644 --- a/templates/index.js +++ b/templates/index.js @@ -1,5 +1,5 @@ import React from 'react'; export default function Home() { - return
Hello world!
; + return

Hello world!

; } diff --git a/test/integration/features/step_definitions/site-steps.js b/test/integration/features/step_definitions/site-steps.js index 79666ba7..3020a6ab 100644 --- a/test/integration/features/step_definitions/site-steps.js +++ b/test/integration/features/step_definitions/site-steps.js @@ -37,7 +37,7 @@ module.exports = { `import React from 'react'; export default function Home() { - return
Hello world!
; + return

Hello world!

; } ` );