import React from 'react'
import {
ThemeProvider,
theme,
ColorModeProvider,
CSSReset,
Box,
Flex,
IconButton,
useColorMode,
Heading,
Text,
Link,
FormControl,
FormLabel,
Input,
Stack,
Checkbox,
Button
} from '@chakra-ui/core'
const VARIANT_COLOR = 'teal'
const App = () => {
return (
)
}
const LoginArea = () => {
return (
)
}
const ThemeSelector = () => {
const { colorMode, toggleColorMode } = useColorMode()
return (
)
}
const LoginHeader = () => {
return (
Sign In to Your Account
Or start your 14 days trial
)
}
const LoginForm = () => {
return (
)
}
export default App