mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-12 11:46:40 +00:00
21 lines
560 B
TypeScript
21 lines
560 B
TypeScript
import React from "react";
|
|
import { LogInForm } from "../components/LogInForm";
|
|
import { ProfileSelector } from "../components/ProfileSelector";
|
|
|
|
export const HomePage: React.FC = () => {
|
|
return (
|
|
<div className="section">
|
|
<div className="container center">
|
|
<h1 className="center">Ticket Manager</h1>
|
|
<div className="row">
|
|
<div className="col s6">
|
|
<ProfileSelector />
|
|
</div>
|
|
<div className="col s6">
|
|
<LogInForm />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|