-
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.
Merge pull request #18 from ChangePlusPlusVandy/app-63-sidebar-update
APP 63 Sidebar Updates and Renaming
- Loading branch information
Showing
38 changed files
with
101 additions
and
91 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
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
File renamed without changes.
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
6 changes: 3 additions & 3 deletions
6
src/pages/Passengers/Passengers.tsx → src/pages/PassengersPage/PassengersPage.tsx
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
import Passenger from "../../components/Passenger/Passenger"; | ||
import Passenger from "./components/Passenger/Passenger"; | ||
import { createTestPassengerData } from "../../util/test-data.util"; | ||
|
||
const Passengers = () => { | ||
const PassengersPage = () => { | ||
// Passengers tab | ||
console.log("Passengers"); | ||
|
||
return <Passenger passenger={createTestPassengerData()} />; | ||
}; | ||
|
||
export default Passengers; | ||
export default PassengersPage; |
2 changes: 1 addition & 1 deletion
2
...onents/Passenger/Passenger.definitions.ts → ...onents/Passenger/Passenger.definitions.ts
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
File renamed without changes.
15 changes: 9 additions & 6 deletions
15
src/components/Passenger/Passenger.tsx → ...rsPage/components/Passenger/Passenger.tsx
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
4 changes: 2 additions & 2 deletions
4
...ts/Passenger/__tests__/Passenger.test.tsx → ...ts/Passenger/__tests__/Passenger.test.tsx
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
2 changes: 1 addition & 1 deletion
2
...odal/PassengerDetailsModal.definitions.ts → ...odal/PassengerDetailsModal.definitions.ts
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import FlightTimeSelector from "./components/FlightTimeSelector/FlightTimeSelector"; | ||
|
||
const RequestFlightPage = () => { | ||
// Request flight tab | ||
console.log("RequestFlight"); | ||
|
||
return ( | ||
<div> | ||
<FlightTimeSelector /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default RequestFlightPage; |
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...FlightTimeSelector/FlightTimeSelector.tsx → ...FlightTimeSelector/FlightTimeSelector.tsx
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
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
src/pages/SignIn/SignIn.tsx → src/pages/SignInPage/SignInPage.tsx
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
const SignIn = () => { | ||
const SignInPage = () => { | ||
// Sign in page | ||
console.log("SignIn"); | ||
|
||
return <div>SignIn</div>; | ||
}; | ||
|
||
export default SignIn; | ||
export default SignInPage; |
4 changes: 2 additions & 2 deletions
4
src/pages/SignUp/SignUp.tsx → src/pages/SignUpPage/SignUpPage.tsx
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
const SignUp = () => { | ||
const SignUpPage = () => { | ||
// Sign in page | ||
console.log("SignUp"); | ||
|
||
return <div>SignUp</div>; | ||
}; | ||
|
||
export default SignUp; | ||
export default SignUpPage; |
File renamed without changes.
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
2 changes: 1 addition & 1 deletion
2
...sModal/FlightDetailsModal.definitions.tsx → ...sModal/FlightDetailsModal.definitions.tsx
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
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...dal/__tests__/FlightDetailsModal.test.tsx → ...dal/__tests__/FlightDetailsModal.test.tsx
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
Oops, something went wrong.