<트레일헤드 문제 >
Create a simple camping list component
Create a camping component that displays a list of camping supplies that you need for your trip. Increase reusability by using other components to compose this component.
- Create a campingList component that contains an ordered list of camping supplies that include Bug Spray, Bear Repellant, and Goat Food
- Create a campingHeader component that displays Camping List wrapped in an H1 tag with a font size of 18
- Create a camping component that contains the campingHeader and campingList components
우선,
헤더 , 캠페인 리스트 구성 으로 분리시켜놔야함
헤더는 font-size 가 18px이 되어야하므로 css 에서 설정을 해줌
1.camping.cmp
<aura:component >
<c:campingHeader/>
<c:campingList/>
</aura:component>
2. campingHeader.cmp
<aura:component >
<h1>Camping List</h1>
</aura:component>
3.campingList .cmp
<aura:component >
<ol>
<li>Bug Spray</li>
<li>Bear Repellant</li>
<li>Goat Food</li>
</ol>
</aura:component>
4.camping.css
.THIS {
}
p.THIS{
font-size:18px;
}
가 답이 됨
'세일즈포스 교육' 카테고리의 다른 글
오그에서 네비바 조정하기 (0) | 2021.05.20 |
---|---|
오그 app 테마 사진 변경 및 칼라 변경 (0) | 2021.05.20 |
tab 안에 파일업로드 만들기 (0) | 2021.05.17 |
Customize Record Details with Page Layout (0) | 2021.03.12 |
CLI이란? (0) | 2021.03.11 |