Зміст курсу
Опановуємо React
Опановуємо React
Челендж: Стилізація за Допомогою CSS Файлу
Завдання
Перейдемо до створення компонента Alert
, який буде відображати всі елементи, передані як дочірні, і застосовувати до них певні стилі. Завдання полягає в наступному:
- Створіть компонент
Alert
, який містить елементdiv
. - Елемент
div
повинен мати ім'я класуalert
. - Елемент
div
повинен мати пропchildren
в якості вмісту. - Елемент
div
повинен мати наступний CSS.
- To create a
div
element in the component, use<div>...</div>
. - To pass
props.children
as the text content enclose it within{...}
and setprops.children
. Result:<div>{props.children}</div>
. - To add a class name to the
div
element, use theclassName
attribute and set it toalert
. Result:className="alert"
. - To import the file with styles in the
index.js
file, useimport
statement and provide the correct path to the file. Result:import './index.css'
. - To apply styles to the
div
element, use the class name selector.alert
and insert the styles from the task.
Дякуємо за ваш відгук!