Update App.js to include the LoginForm.

This commit is contained in:
David Ball 2024-05-31 01:28:35 -04:00
parent 4fc4ce9d48
commit aef0e6c31f

View File

@ -1,22 +1,15 @@
import logo from './logo.svg';
import './App.css';
import React from 'react';
import LoginForm from './components/LoginForm';
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
<h1>Welcome to NM3CLOL-admin</h1>
<LoginForm />
</header>
</div>
);