source: frontend/src/Components/BecomeAHost/BecomeAHostOverlay.js@ e6c2521

Last change on this file since e6c2521 was e6c2521, checked in by darsov2 <62809499+darsov2@…>, 6 months ago

images upload/download impl, other fixes

  • Property mode set to 100644
File size: 891 bytes
Line 
1import { Container } from 'react-bootstrap';
2import Review from "./Review";
3
4function BecomeAHostOverlay() {
5 return (
6 <>
7 <Container>
8 <Container style={{position: 'relative', top: '-750px', left: "-550px", zIndex: '1'}}>
9 <Review/ >
10 </Container>
11 <Container style={{position: 'relative', top: '-600px', left: "650px", zIndex: '1'}}>
12 <Review/ >
13 </Container>
14 <Container style={{position: 'relative', top: '-1250px', left: "550px", zIndex: '1'}}>
15 <Review/ >
16 </Container>
17 <Container style={{position: 'relative', top: '-900px', left: "-200px", zIndex: '1'}}>
18 <Review/>
19 </Container>
20 </Container>
21 </>
22 );
23}
24
25export default BecomeAHostOverlay;
Note: See TracBrowser for help on using the repository browser.