Client - reformat js files w/ prettier

This commit is contained in:
Sam
2019-08-28 15:35:22 +02:00
parent c8ea44eecc
commit 2a52b9081d
57 changed files with 1148 additions and 1252 deletions

View File

@ -1,7 +1,7 @@
import React from 'react'
import { Helmet } from 'react-helmet'
export default function AccessDenied () {
export default function AccessDenied() {
return (
<div>
<Helmet>
@ -9,7 +9,7 @@ export default function AccessDenied () {
</Helmet>
<h1 className="page-title">Access denied</h1>
<p className="App-center">
{'You don\'t have permissions to access this page.'}
{"You don't have permissions to access this page."}
</p>
</div>
)

View File

@ -1,13 +1,13 @@
import React from 'react'
import { Helmet } from 'react-helmet'
export default function NotFound () {
export default function NotFound() {
return (
<div>
<Helmet>
<title>fittrackee - 404</title>
</Helmet>
<h1 className="page-title">Page not found</h1>
<h1 className="page-title">Page not found</h1>
</div>
)
}