-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jsx
44 lines (40 loc) · 1.04 KB
/
index.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import React from 'react';
import PersonnelSelecting from './PersonnelSelecting';
import GeneralNav from '../@common/GeneralNav';
import styled from 'styled-components';
import Footer from '../@common/Footer';
export default function SeatSelectingPage() {
return (
<>
<GeneralNav footprint1="예매" footprint2="빠른 예매"></GeneralNav>
<WrapperWrapper>
<Wrapper>
<FastTicketing>빠른예매</FastTicketing>
<PersonnelSelecting></PersonnelSelecting>
</Wrapper>
<Footer />
</WrapperWrapper>
</>
);
}
const FastTicketing = styled.div`
margin: 3.6rem 111.2rem 2.8rem 9.6rem;
color: ${({ theme }) => theme.colors.gray1};
font: ${({ theme }) => theme.fonts.headline3};
height: 2.2rem;
`;
const Wrapper = styled.div`
display: flex;
justify-content: center;
flex-wrap: wrap;
background-color: #fff;
width: 128rem;
`;
const WrapperWrapper = styled.div`
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #fff;
`;
//