Skip to content
Snippets Groups Projects
Commit 755dde3c authored by Defendi Alberto's avatar Defendi Alberto
Browse files

Merge branch 'docz' into 'dev'

Docz installation

See merge request !9
parents 961351d8 30e96944
No related branches found
No related tags found
2 merge requests!11Basic implementation of login page,!9Docz installation
Pipeline #11488 passed
...@@ -138,3 +138,4 @@ npm-debug.log* ...@@ -138,3 +138,4 @@ npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*
yarn.lock yarn.lock
.docz/
\ No newline at end of file
...@@ -32,7 +32,7 @@ npm install --global yarn ...@@ -32,7 +32,7 @@ npm install --global yarn
# Install dependencies # Install dependencies
yarn install yarn install
# Run project # Run project
yarn run yarn start
# Further commands are in the package.json under "scripts" # Further commands are in the package.json under "scripts"
``` ```
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
"@types/node": "^12.0.0", "@types/node": "^12.0.0",
"@types/react": "^17.0.0", "@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0", "@types/react-dom": "^17.0.0",
"docz": "^2.3.1",
"eslint-config-airbnb-typescript": "^12.3.1", "eslint-config-airbnb-typescript": "^12.3.1",
"react": "^17.0.1", "react": "^17.0.1",
"react-dom": "^17.0.1", "react-dom": "^17.0.1",
...@@ -24,7 +25,10 @@ ...@@ -24,7 +25,10 @@
"eject": "react-scripts eject", "eject": "react-scripts eject",
"format": "prettier --write .", "format": "prettier --write .",
"lint": "eslint .", "lint": "eslint .",
"lint:fix": "eslint --fix ." "lint:fix": "eslint --fix .",
"docz:dev": "docz dev",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve"
}, },
"browserslist": { "browserslist": {
"production": [ "production": [
......
import React from 'react'; import React from 'react';
import { LoginForm } from './components/LoginForm/LoginForm'; import { AuthUser } from './components/AuthUser/AuthUser';
export const App: React.FC = () => ( export const App: React.FC = () => (
<div className="App" data-testid="App"> <div className="App" data-testid="App">
<header className="App-header"> <header className="App-header">
<LoginForm /> <AuthUser />
</header> </header>
</div> </div>
); );
import React from 'react';
import Container from '@material-ui/core/Container';
import { LoginForm } from './LoginForm/LoginForm';
export const AuthUser: React.FC = () => (
<Container maxWidth="sm">
<LoginForm />
</Container>
);
---
name: LoginForm
---
import { LoginForm } from './LoginForm.tsx';
# LoginForm
Lets registered user authenticate
<LoginForm />
\ No newline at end of file
...@@ -38,12 +38,7 @@ export const LoginForm: React.FC = () => { ...@@ -38,12 +38,7 @@ export const LoginForm: React.FC = () => {
const handleSubmit = (event: React.FormEvent): void => { const handleSubmit = (event: React.FormEvent): void => {
event.preventDefault(); event.preventDefault();
const errors: Array<string> = []; const errors: Array<string> = [];
if (!isEmailValid(formValues.email)) { if (!isEmailValid(formValues.email)) errors.push('email');
errors.push('email');
console.log('Email address not valid');
} else {
console.log(formValues);
}
}; };
const classes = useStyles(); const classes = useStyles();
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment