I'm relatively new to reactjs and i started my build with create-react-app. Ican't seem to import my css, the error log tells me that it's an unclosed string but i don't see how it's unclosed. I can't see where i went wrong..
import React, { Component } from 'react';
import NavBar from './components/navbar';
import './css/style.css';
class App extends Component {
render() {
return (
<div className="App">
<NavBar />
</div>
);
}
}
export default App;
./src/css/style.css
Module build failed: Syntax Error
(1298:43) Unclosed string
1296 |
1297 | .floor-plan-c {
> 1298 | background-image: url('../img/type-c.png');
| ^
1299 | background-position: 50% 50%;
1300 | background-size: cover;