Replaced " with '

This commit is contained in:
VakarisZ 2019-12-20 18:47:47 +02:00
parent a9090008f9
commit d36b00b05b
1 changed files with 5 additions and 5 deletions

View File

@ -11,11 +11,11 @@ class ConfigurePageComponent extends React.Component{
render(){
return(
<div className={"not-found"}>
<img className={"monkey-detective"} src={monkeyDetective}/>
<div className={"text-block"}>
<h1 className={"not-found-title"}>404</h1>
<h2 className={"not-found-subtitle"}>Page not found</h2>
<div className={'not-found'}>
<img className={'monkey-detective'} src={monkeyDetective}/>
<div className={'text-block'}>
<h1 className={'not-found-title'}>404</h1>
<h2 className={'not-found-subtitle'}>Page not found</h2>
</div>
</div>
)