mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-10 18:56:39 +00:00
23 lines
675 B
TypeScript
23 lines
675 B
TypeScript
import React from "react";
|
|
// import { LogInForm } from "../components/LogInForm";
|
|
// import { ProfileSelector } from "../components/ProfileSelector";
|
|
import SignInSide from "../components/SignInSide";
|
|
|
|
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>
|
|
<SignInSide />
|
|
);
|
|
};
|