You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
help_admin/src/App.tsx

20 lines
345 B

4 years ago
import React from 'react';
import './App.css';
import 'bootstrap/dist/css/bootstrap.min.css';
import {Login} from "./Login";
class App extends React.Component<any, any>{
render() {
const login=<Login username="" password=""/>
return (
<div className="App">
{login}
</div>
);
}
}
export default App;