import React from 'react' const App = () => { const title = 'Háromszög területszámítás'; const base = 30; const height = 35; return ( <>
Háromszög

{title}

Terület: {base * height / 2}

) } export default App