mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-11 03:06:40 +00:00
23 lines
700 B
TypeScript
23 lines
700 B
TypeScript
import React, { FC } from "react";
|
|
import { Header } from "../components/Header";
|
|
import { AvatarList } from "../components/AvatarList";
|
|
import { ProgressBar } from "../components/ProgressBar";
|
|
|
|
export const TicketPage: FC = () => {
|
|
return (
|
|
<>
|
|
<Header
|
|
description="Research, ideate and present brand concepts for client consideration"
|
|
title="Brand Concept and Design"
|
|
/>
|
|
{/* <AvatarList users={["../images/user_1.jpg", "../images/user_2.jpg"]} /> */}
|
|
<ProgressBar value={60} />
|
|
{/* // <TabView>
|
|
// <ChildTicket/>
|
|
// <ChildFile/>
|
|
// <ChildActivity/>
|
|
// </TabView>
|
|
// <Notes/> */}
|
|
</>
|
|
);
|
|
};
|