Skip to content

Commit

Permalink
fix(homepage): wrapped the initial content in an <h1> instead of a …
Browse files Browse the repository at this point in the history
…`<div>`
  • Loading branch information
travi committed Oct 25, 2020
1 parent ed2482d commit 73266b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';

export default function Home() {
return <div>Hello world!</div>;
return <h1>Hello world!</h1>;
}
2 changes: 1 addition & 1 deletion test/integration/features/step_definitions/site-steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module.exports = {
`import React from 'react';
export default function Home() {
return <div>Hello world!</div>;
return <h1>Hello world!</h1>;
}
`
);
Expand Down

0 comments on commit 73266b9

Please sign in to comment.