This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react' | |
| import { Grid,Paper, Avatar, TextField, Button, Typography,Link } from '@material-ui/core' | |
| import LockOutlinedIcon from '@material-ui/icons/LockOutlined'; | |
| import FormControlLabel from '@material-ui/core/FormControlLabel'; | |
| import Checkbox from '@material-ui/core/Checkbox'; | |
| const Login=()=>{ | |
| const paperStyle={padding :20,height:'70vh',width:280, margin:"20px auto"} | |
| const avatarStyle={backgroundColor:'#1bbd7e'} | |
| const btnstyle={margin:'8px 0'} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // import React from 'react'; | |
| // export default function Blog(props) { | |
| // const posts = [ | |
| // {id: 1, title: '...??', content: 'press!'}, | |
| // {id: 2, title: '>>>>', content: 'FFFEE!'} | |
| // ]; | |
| // const sidebar = ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import "./styles.css"; | |
| export default function App() { | |
| return ( | |
| <div className="App"> | |
| <h1>Hello</h1> | |
| <h2>Start editing to see some magic happen!</h2> | |
| </div> | |
| ); | |
| } |