import styles from './styles/App.module.scss' function Person({ name, age }) { return (

Имя: {name}

Возраст: {age}

) } function App() { const options = {title:'Меню', width: 100, height: 200} let {width, title, height} = options; console.log(title); console.log(width); console.log(height); return ( <> ) } export default App