chore: moving file structure of components

This commit is contained in:
Kyle Gill
2019-05-18 14:56:36 -06:00
parent b4d43aaa66
commit f8f6eda47b
15 changed files with 6 additions and 20 deletions

23
src/components/SignOut.js Normal file
View File

@@ -0,0 +1,23 @@
import React from "react"
import { compose } from "recompose"
import { withTheme } from "emotion-theming"
import { Button } from "../elements"
import { withFirebase } from "../firebase"
const SignOutButton = ({ firebase, theme }) => (
<Button
fontSize="small"
colors={theme.colors}
type="button"
onClick={firebase.doSignOut}
>
Sign Out
</Button>
)
export default compose(
withTheme,
withFirebase
)(SignOutButton)