Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
21
Issues
21
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SRCT
go
Commits
e8b7b913
Commit
e8b7b913
authored
Oct 04, 2018
by
Zach Osman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
this should work, so i'm commiting it.
parent
ccceb178
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
6 deletions
+27
-6
go/go_ahead/src/Components/Pages/HomePage.js
go/go_ahead/src/Components/Pages/HomePage.js
+11
-0
go/go_ahead/src/Components/Pages/index.js
go/go_ahead/src/Components/Pages/index.js
+3
-0
go/go_ahead/src/Components/index.js
go/go_ahead/src/Components/index.js
+3
-0
go/go_ahead/src/index.jsx
go/go_ahead/src/index.jsx
+10
-6
No files found.
go/go_ahead/src/Components/Pages/HomePage.js
0 → 100644
View file @
e8b7b913
import
React
from
'
react
'
;
export
default
class
HomePage
extends
Component
{
render
()
{
return
(
<
div
>
<
text
>
Hello
World
!<
/text
>
<
/div
>
);
}
}
go/go_ahead/src/Components/Pages/index.js
0 → 100644
View file @
e8b7b913
import
HomePage
from
'
./HomePage.jsx
'
;
export
{
HomePage
};
go/go_ahead/src/Components/index.js
0 → 100644
View file @
e8b7b913
import
{
HomePage
}
from
'
./Pages
'
;
export
{
HomePage
};
go/go_ahead/src/index.jsx
View file @
e8b7b913
import
React
from
"
react
"
;
import
ReactDOM
from
"
react-dom
"
;
import
React
from
'
react
'
;
import
ReactDOM
from
'
react-dom
'
;
import
{
HomePage
}
from
'
./Components
'
;
// ReactDOM.render(<HomePage />, document.getElementById('root'));
ReactDOM
.
render
(
<
div
>
<
p
>
Hello Go 3 wi
th React!
</
p
>
<
p
>
Hello Go 5
th React!
</
p
>
</
div
>,
document
.
getElementById
(
"
root
"
)
document
.
getElementById
(
'
root
'
)
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment