/
aprogrammer
/
react-basic-intro
Обзор
Документация
Войти
/
aprogrammer
/
react-basic-intro
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
intro-vite/src/components/TsxComponent.tsx
13 строк
361 B
aprogrammer-ru
init repo
23 дек 2024, 23:54
23 дек 2024, 23:54
ed05041
Код
Авторство
О чём код?
import { FC } from 'react'; // Importing React module for functional component interface Props { // Interface for the props of the component name: string; age: number; } const TsxComponent: FC<Props> = (props) => { // Functional component using arrow functional syntax return <h1>Привет, {props.name}!</h1>; }; export default TsxComponent;