Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
React Redux Starter Code
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andrew Herold
React Redux Starter Code
Commits
0a458ed2
Commit
0a458ed2
authored
4 years ago
by
Andrew Herold
Browse files
Options
Downloads
Patches
Plain Diff
Checkpoint 2 commit. Added barebones view
parent
d3694efd
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
catch-rate-calc/src/app.js
+2
-2
2 additions, 2 deletions
catch-rate-calc/src/app.js
catch-rate-calc/src/features/catchRateCalc/catchRateCalc.js
+9
-0
9 additions, 0 deletions
catch-rate-calc/src/features/catchRateCalc/catchRateCalc.js
with
11 additions
and
2 deletions
catch-rate-calc/src/app.js
+
2
−
2
View file @
0a458ed2
import
React
from
'
react
'
;
import
React
from
'
react
'
;
import
{
Route
}
from
'
react-router-dom
'
;
import
{
Route
}
from
'
react-router-dom
'
;
import
{
C
ounter
}
from
'
./features/c
ounter/counter
.js
'
;
import
{
C
atchRateCalc
}
from
'
./features/c
atchRateCalc/catchRateCalc
.js
'
;
export
function
App
()
{
export
function
App
()
{
return
(
return
(
<>
<>
<
Route
exact
path
=
{
'
/
'
}
>
<
Route
exact
path
=
{
'
/
'
}
>
<
C
ounter
label
=
{
'
Taps
'
}
/
>
<
C
atchRateCalc
label
=
{
'
Taps
'
}
/
>
<
/Route
>
<
/Route
>
<
/
>
<
/
>
);
);
...
...
This diff is collapsed.
Click to expand it.
catch-rate-calc/src/features/catchRateCalc/catchRateCalc.js
0 → 100644
+
9
−
0
View file @
0a458ed2
import
React
from
'
react
'
;
export
function
CatchRateCalc
()
{
return
(
<
main
>
[
placeholder
text
]
<
/main
>
);
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment