diff --git a/src/pages/bill/billSent.tsx b/src/pages/bill/billSent.tsx new file mode 100644 index 0000000..3f957be --- /dev/null +++ b/src/pages/bill/billSent.tsx @@ -0,0 +1,18 @@ +import { Button, Result } from 'antd'; +import { useHistory } from 'react-router-dom'; + +export function BillSent() { + const history = useHistory(); + return ( + history.push('/')}> + Go Back Home + + ]} + /> + ); +}