/
githubmirror
/
reactjs-interview-questions
Обзор
Документация
Войти
/
githubmirror
/
reactjs-interview-questions
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
coding-exercise/src/components/NavigationButton.js
29 строк
621 B
codomposer
add coding exercise template
03 ноя 2025, 16:36
03 ноя 2025, 16:36
ff7ef78
Код
Авторство
О чём код?
import React from 'react'; function NavigationButton({ onClick, children, style = {} }) { return ( <button onClick={onClick} style={{ position: 'fixed', top: '20px', left: '20px', padding: '10px 20px', backgroundColor: '#007bff', color: 'white', border: 'none', borderRadius: '5px', cursor: 'pointer', fontSize: '16px', zIndex: 1000, fontWeight: '500', boxShadow: '0 2px 4px rgba(0,0,0,0.2)', ...style, }} > {children} </button> ); } export default NavigationButton;