--- title: Home permalink: / ---
npm install node-webrender---
title: Home
permalink: /
---
---
``javascript
const App = () => {
const [count, setCount] = useState(0)
const dec = () => setCount(count - 1)
const inc = () => setCount(count + 1)
return (
)
}
const styles = StyleSheet.create({
counter: {
flex: 1,
padding: 20,
justifyContent: 'space-between'
},
bar: {
backgroundColor: '#ff0000',
height: 20
},
buttons: {
flexDirection: 'row',
justifyContent: 'space-between'
}
})
``

Please note there is no DOM, nor any web technology involved in this project, unlike what you might expect from such name. Read more here
---