chore: remove semi

This commit is contained in:
Katie Thornhill 2019-11-19 23:06:33 -05:00
parent 4b75eaa0ab
commit 8fcc0dcbf9
No known key found for this signature in database
GPG key ID: F76EDC6541A99644
64 changed files with 1073 additions and 1073 deletions

View file

@ -1,5 +1,5 @@
import React from 'react';
import './landing.sass';
import React from 'react'
import './landing.sass'
const Error404 = ({ root = false }) => (
<div className="landing uk-width-1-1 uk-text-center">
@ -14,6 +14,6 @@ const Error404 = ({ root = false }) => (
</section>
</div>
</div>
);
)
export default Error404;
export default Error404

View file

@ -1,12 +1,12 @@
import React, { Component, Fragment } from 'react';
import { Link } from 'react-router-dom';
import Scrollbars from 'react-custom-scrollbars';
import Typist from 'react-typist';
import moment from 'moment';
import './landing.sass';
import discordLogo from './images/discord-logo.svg';
import RoleypolyDemo from '../components/demos/roleypoly';
import TypingDemo from '../components/demos/typing';
import React, { Component, Fragment } from 'react'
import { Link } from 'react-router-dom'
import Scrollbars from 'react-custom-scrollbars'
import Typist from 'react-typist'
import moment from 'moment'
import './landing.sass'
import discordLogo from './images/discord-logo.svg'
import RoleypolyDemo from '../components/demos/roleypoly'
import TypingDemo from '../components/demos/typing'
const Landing = ({ root = false }) => (
<div className="landing uk-width-1-1 uk-text-center">
@ -34,5 +34,5 @@ const Landing = ({ root = false }) => (
</section>
</div>
</div>
);
export default Landing;
)
export default Landing

View file

@ -1,7 +1,7 @@
import React, { Fragment } from 'react';
import React, { Fragment } from 'react'
import goodImg from './images/whynoroles-good.png';
import badImg from './images/whynoroles-bad.png';
import goodImg from './images/whynoroles-good.png'
import badImg from './images/whynoroles-bad.png'
const WhyNoRoles = props => {
return (
@ -27,7 +27,7 @@ const WhyNoRoles = props => {
In this example, Roleypoly is above other roles, and will be able to assign them.
</p>
</Fragment>
);
};
)
}
export default WhyNoRoles;
export default WhyNoRoles

View file

@ -1,12 +1,12 @@
import React from 'react';
import { Route, Switch } from 'react-router-dom';
import Scrollbars from 'react-custom-scrollbars';
import './pages.sass';
import React from 'react'
import { Route, Switch } from 'react-router-dom'
import Scrollbars from 'react-custom-scrollbars'
import './pages.sass'
import WhyNoRoles from './WhyNoRoles';
import Error404 from './Error404';
export { default as Landing } from './Landing';
export { default as Error404 } from './Error404';
import WhyNoRoles from './WhyNoRoles'
import Error404 from './Error404'
export { default as Landing } from './Landing'
export { default as Error404 } from './Error404'
const Pages = props => {
return (
@ -21,7 +21,7 @@ const Pages = props => {
</div>
</Scrollbars>
</div>
);
};
)
}
export default Pages;
export default Pages