Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SMPPIR-Checkin-Portal
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
Harbor Registry
Model registry
Operate
Environments
Monitor
Incidents
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
SMPPIR
SMPPIR-Checkin-Portal
Commits
32b01884
Commit
32b01884
authored
6 years ago
by
Gustavo Hornig
Browse files
Options
Downloads
Patches
Plain Diff
Add stuff
parent
5f9791cc
No related branches found
No related tags found
1 merge request
!2
Create category page
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
smppir-checkin-portal/package.json
+3
-1
3 additions, 1 deletion
smppir-checkin-portal/package.json
smppir-checkin-portal/src/App.js
+2
-0
2 additions, 0 deletions
smppir-checkin-portal/src/App.js
smppir-checkin-portal/src/Pages/Teste.js
+13
-0
13 additions, 0 deletions
smppir-checkin-portal/src/Pages/Teste.js
with
18 additions
and
1 deletion
smppir-checkin-portal/package.json
+
3
−
1
View file @
32b01884
...
...
@@ -5,6 +5,8 @@
"dependencies"
:
{
"react"
:
"^16.3.2"
,
"react-dom"
:
"^16.3.2"
,
"react-materialize"
:
"^2.2.1"
,
"react-router-dom"
:
"^4.2.2"
,
"react-scripts"
:
"1.1.4"
},
"scripts"
:
{
...
...
@@ -13,4 +15,4 @@
"test"
:
"react-scripts test --env=jsdom"
,
"eject"
:
"react-scripts eject"
}
}
\ No newline at end of file
}
This diff is collapsed.
Click to expand it.
smppir-checkin-portal/src/App.js
+
2
−
0
View file @
32b01884
...
...
@@ -3,6 +3,7 @@ import { BrowserRouter as Router, Route } from 'react-router-dom'
import
'
./App.css
'
;
import
MainPage
from
'
./Pages/MainPage
'
import
Login
from
'
./Pages/Login
'
import
Teste
from
'
./Pages/Teste
'
class
App
extends
Component
{
render
()
{
...
...
@@ -11,6 +12,7 @@ class App extends Component {
<
div
>
<
Route
exact
=
{
true
}
path
=
"
/
"
component
=
{
MainPage
}
/
>
<
Route
exact
=
{
true
}
path
=
"
/login
"
component
=
{
Login
}
/
>
<
Route
exact
=
{
true
}
path
=
"
/teste
"
component
=
{
Teste
}
/
>
<
/div
>
<
/Router
>
);
...
...
This diff is collapsed.
Click to expand it.
smppir-checkin-portal/src/Pages/Teste.js
0 → 100644
+
13
−
0
View file @
32b01884
import
React
,
{
Component
}
from
'
react
'
;
class
Teste
extends
Component
{
render
(){
return
(
<
div
>
Teste
<
/div
>
)
}
}
export
default
Teste
;
\ 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