-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
018e0b0
commit 7c6eda0
Showing
39 changed files
with
956 additions
and
677 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import React from "react"; | ||
import MainLayout from "../../layouts/MainLayout"; | ||
import PropagationForm from "./components/propagation-form"; | ||
|
||
const PropagationRequestPage: React.FC = () => { | ||
const handleSuccess = (queueId: string) => { | ||
// Handle success, e.g., show a success message or redirect | ||
console.log("Propagation request submitted successfully with Queue ID:", queueId); | ||
}; | ||
|
||
return ( | ||
<MainLayout | ||
title="Orbit Propagation Request" | ||
description="Submit a request for numerical orbit propagation." | ||
keywords="Orbit, Propagation, Request" | ||
> | ||
<div className="w-full h-full flex flex-col items-center px-4 md:px-8 py-8 space-y-8"> | ||
<div className="w-full max-w-[1400px]"> | ||
<PropagationForm onSuccess={handleSuccess} /> | ||
</div> | ||
</div> | ||
</MainLayout> | ||
); | ||
}; | ||
|
||
export default PropagationRequestPage; |
Oops, something went wrong.