The title says it all, I want to edit a file in React Native.
This link shows how to read it easily, I just don't know how to edit/write it. https://www.codevscolor.com/react-native-parse-json
App.js (snippet)
import database from './db.json'
<Text style={{fontSize: 20, color: '#ffffff', fontWeight: 'bold'}}>
{database.name}
</Text>
db.json
{
"name" : "Paul",
"age" : 20,
"subject" : [
{
"name": "SubA",
"grade": "B"
},
{
"name" : "SubB",
"grade" : "C"
}
]
}