finished up event forms & starting ticket history

This commit is contained in:
ashprit
2024-10-26 17:43:45 +01:00
parent e33d303f43
commit 42fd17fa48
2 changed files with 23 additions and 36 deletions

View File

@@ -0,0 +1,19 @@
import React from 'react'
interface previousTicket{
name: string,
status: boolean,
// ticket status
//
// optional transfer
}
const previousTicket = () => {
return (
<div>previousTicket</div>
)
}
export default previousTicket;