import React from "react"; import Button from "./Button"; import { storeUser } from "../../actions/authActions"; import store from "../../store"; const LoginWindow = () => { const onUserLogin = () => { const user = { profile: { given_name: "John Doe" } }; console.log(`User logged in!`); store.dispatch(storeUser(user)); }; return (

Traffic Police Service

Login to your account to view your dashboard and register a new vehicle.

); }; export default LoginWindow;