
JavaScript
8
Вклад в тег
lxrun /uninstall /full
lxrun /install
Win+R -> Optionalfeatures.exe
вырубить Windows Subsystem for Linux (Beta), перезагрузить ПК и сделать все заново {
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme",
"ignored_packages":
[
"Vintage",
"JavaScript"
],
"theme": "Material-Theme.sublime-theme"
}
"material_theme_disable_fileicons": true
getInitialState: function() {
return {
data: []
}
},
componentWillMount: function() {
fetch('http://jsonplaceholder.typicode.com/comments')
.then((res) => {
res.json().then((data) => {
this.setState({
data: data
})
})
})
.catch((err) => {
console.log(err)
})
}