generated from UoaWDCC/ssr-template
-
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 #42 from UoaWDCC/karmveer/web/adding-screens
Karmveer/web/adding screens
- Loading branch information
Showing
7 changed files
with
57 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
function ExecScreen() { | ||
return ( | ||
<div> | ||
<h2> Exec Screen</h2> | ||
</div> | ||
) | ||
} | ||
|
||
export default ExecScreen |
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,9 @@ | ||
function LoginScreen() { | ||
return ( | ||
<div> | ||
<h2> Login Screen</h2> | ||
</div> | ||
) | ||
} | ||
|
||
export default LoginScreen |
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,9 @@ | ||
function PPVScreen() { | ||
return ( | ||
<div> | ||
<h2> PPV Screen</h2> | ||
</div> | ||
) | ||
} | ||
|
||
export default PPVScreen |
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,9 @@ | ||
function PhotosScreen() { | ||
return ( | ||
<div> | ||
<h2> PhotosScreen Screen</h2> | ||
</div> | ||
) | ||
} | ||
|
||
export default PhotosScreen |
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,9 @@ | ||
function SignUpScreen() { | ||
return ( | ||
<div> | ||
<h2> Sign Up Screen</h2> | ||
</div> | ||
) | ||
} | ||
|
||
export default SignUpScreen |