Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
.currList { max-height: 100%; height: 100%; max-width: 300px; list-style-type: none; overflow-y: auto; margin-right: 50px; background: #f3f3f3; padding: 20px; }
max-height: 100%; height: 100%;
class App extends Component { render() { return ( <div className="app"> <aside> <ul className="currList"> {currencies.map(curr => ( <li key={curr} className="currItem"> <input type="checkbox" id={curr} /> <label htmlFor={curr}>{curr.toUpperCase()}</label> </li> ))} </ul> </aside> </div> ); } }