Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
X
xpub-elife
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Couldn't fetch the linked file.
Show more breadcrumbs
xpub
xpub-elife
Merge requests
!3
Set up styleguide
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Set up styleguide
styleguide
into
master
Overview
0
Commits
1
Pipelines
4
Changes
6
Merged
Aanand Prasad
requested to merge
styleguide
into
master
6 years ago
Overview
0
Commits
1
Pipelines
4
Changes
4
Expand
0
0
Merge request reports
Compare
version 1
version 3
214c533a
6 years ago
version 2
b6e8c50f
6 years ago
version 1
eccd6c6f
6 years ago
master (base)
and
version 3
latest version
3388306f
1 commit,
6 years ago
version 3
214c533a
1 commit,
6 years ago
version 2
b6e8c50f
1 commit,
6 years ago
version 1
eccd6c6f
1 commit,
6 years ago
Show latest version
4 files
+
30
−
38
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
components/AuthorDetails.js
+
9
−
1
Options
import
React
from
'
react
'
export
default
()
=>
<
div
>
Hello
world
!<
/div
>
export
default
({
value
})
=>
(
<
div
>
<
input
disabled
type
=
"
text
"
value
=
{
value
.
firstName
}
/
>
<
input
disabled
type
=
"
text
"
value
=
{
value
.
lastName
}
/
>
<
br
/>
<
input
disabled
type
=
"
text
"
value
=
{
value
.
email
}
/
>
<
input
disabled
type
=
"
text
"
value
=
{
value
.
institute
}
/
>
<
/div
>
)