Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1x | import BasicLayout from "main/layouts/BasicLayout/BasicLayout"; export default function HomePage() { // Stryker disable all : TODO: restructure this code to avoid the need for this disable return ( <div data-testid={"HomePage-main-div"}> <BasicLayout> <h1 data-testid="homePage-title" style={{ fontSize: "75px", borderRadius: "7px", backgroundColor: "white", opacity: ".9" }} className="text-center border-0 my-3">Welcome</h1> </BasicLayout> </div> ) // Stryker restore all } |