people. Currently I am learning React on Egghead.io and I find a problem importing css file in my js. This is my code in js file which importing css. The style.css is currently in the same directory. I dont know Webpack good enough to figure out how to fix that.
import React from 'react';
import "style.css";
class App extends React.Component {
constructor(props) {
super(props);
this.state = {
input: '/* add your jsx here */',
output: '',
err: ''
}
}
update(e) {
let code = e.target.value;
try{
this.setState({
output: window.Babel
.transform(code, {presets: ['es2015', 'react']})
.code,
err: ''
})
}
catch(err) {
this.setState({err: err.message})
}
}
render() {
return (
<div>
<header>{this.state.err}</header>
<div className="container">
<textarea onChange={this.update.bind(this)}
defaultValue={this.state.input}/>
<pre>
{this.state.output}
</pre>
</div>
</div>
)
}
}
export default App
The text of the error is : Failed to compile.
Error in ./src/App.js Module not found: 'style.css' in C:\Front-end\projects\React\Reactapp\src
@ ./src/App.js 14:0-20
Виртуальный выделенный сервер (VDS) становится отличным выбором
Довольно распространенная на JQ ошибка - код срабатывает только со второго нажатия на элементФункцию запускал при помощи CLICK и ON, но код срабатывает...
Столкнулся с тем, что JS не ищет свойства прописанные в прототипе во вложенностиЕсть ли способ заставить искать вложенные свойства?
Гайз, нужна помощь, не могу понять, каким образом я могу привязать модель и вид к уже существущему массиву элементов в DOM дереве ( в divcontainer у меня...