import React from "react";
import styled from "styled-components";
const Home=()=>{
return (
<Wrap backgroundImage={backgroundImage}>
</Wrap>
)
}
const Wrap = styled.div`
width: 100vw;
height: 100vh;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-image: ${(props) =>
`url(${require(`../images/${props.backgroundImage}`).default})`};
display: flex;
flex-direction: column;
justify-content: space-between; //vertical alignment because of flex direction column
align-items: center; //horizontal alignment because of flex direction column
`;
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (2)
Pls I nee a video of this post
this doesn't work
Some comments have been hidden by the post's author - find out more