/
aprogrammer
/
react-basic-intro
Обзор
Документация
Войти
/
aprogrammer
/
react-basic-intro
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
intro-vite/src/components/ChildComponent.tsx
10 строк
226 B
aprogrammer-ru
init repo
23 дек 2024, 23:54
23 дек 2024, 23:54
ed05041
Код
Авторство
О чём код?
//a component with border ui around child prop import React from 'react'; const ChildComponent = ({ children }) => { return ( <div className="border"> {children} </div> ); }; export default ChildComponent;