REACT NATIVE
1. To install expo cli use command npm install -g expo-cli 2. To create a new project in expo use below command expo init projectname 3. In react native h2 tag and div are not working as it has no react dom and we are building the react native app 4. React native don't have dom and they do not support those html element 5. div replace with view and input replace with TextInput 6. View is only able to hold the other component, not able to display the text 7. View component have multiple child component 8. In web dev we have other component like article, section - here we have only view 9. We can put view inside view - when we build more complex project 10. In normal react you don't have to import the html element but in react native you do Styling the components:- 11. Here we don't have any css so to style the react native app we have to way - either we do inline styles - Stylesheet objects ( Saari style ek object ke andar daal do fir use reuse bhi kr sakte hai) -achi hai ...