/
aprogrammer
/
react-basic-intro
Обзор
Документация
Войти
/
aprogrammer
/
react-basic-intro
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
intro-vite/src/components/FuncComponent.tsx
13 строк
300 B
aprogrammer-ru
init repo
23 дек 2024, 23:54
23 дек 2024, 23:54
ed05041
Код
Авторство
О чём код?
//react component using function const FuncComponent = () => { // Functional component using arrow function return ( <> <div> <h1>Привет, FuncComponent!</h1> </div> </> ); }; export default FuncComponent;// export the component