Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
compendium-v2
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
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
geant-swd
compendium-v2
Merge requests
!134
Refactor
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Refactor
refactor
into
develop
Overview
0
Commits
48
Pipelines
0
Changes
7
Merged
Bjarke Madsen
requested to merge
refactor
into
develop
7 months ago
Overview
0
Commits
48
Pipelines
0
Changes
7
Expand
0
0
Merge request reports
Viewing commit
4a87d05d
Prev
Next
Show latest version
7 files
+
251
−
310
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Some changes are not shown
For a faster browsing experience, some files are collapsed by default.
Expand all files
Files
7
Search (e.g. *.vue) (Ctrl+P)
4a87d05d
Highlight & scroll to current page in sidebar
· 4a87d05d
Bjarke Madsen
authored
7 months ago
compendium-frontend/src/components/sidebar/ConnectedUsersSidebar.tsx
+
34
−
43
Options
import
React
from
'
react
'
;
import
{
Link
}
from
'
react-router-dom
'
;
import
{
Row
}
from
'
react-bootstrap
'
;
import
Sidebar
from
'
./SideBar
'
;
import
Link
from
'
./LinkWithHighlight
'
;
const
ConnectedUsersSidebar
=
()
=>
{
return
(
<
Sidebar
>
<
h6
className
=
"section-title"
>
Connected Users
</
h6
>
<
Row
>
<
Link
to
=
"/institutions-urls"
className
=
"link-text-underline"
>
<
span
>
Webpages Listing Institutions and Organisations Connected to NREN Networks
</
span
>
</
Link
>
</
Row
>
<
Row
>
<
Link
to
=
"/connected-proportion"
className
=
"link-text-underline"
>
<
span
>
Proportion of Different Categories of Institutions Served by NRENs
</
span
>
</
Link
>
</
Row
>
<
Row
>
<
Link
to
=
"/connectivity-level"
className
=
"link-text-underline"
>
<
span
>
Level of IP Connectivity by Institution Type
</
span
>
</
Link
>
</
Row
>
<
Row
>
<
Link
to
=
"/connection-carrier"
className
=
"link-text-underline"
>
<
span
>
Methods of Carrying IP Traffic to Users
</
span
>
</
Link
>
</
Row
>
<
Row
>
<
Link
to
=
"/connectivity-load"
className
=
"link-text-underline"
>
<
span
>
Connectivity Load
</
span
>
</
Link
>
</
Row
>
<
Row
>
<
Link
to
=
"/connectivity-growth"
className
=
"link-text-underline"
>
<
span
>
Connectivity Growth
</
span
>
</
Link
>
</
Row
>
<
Link
to
=
"/institutions-urls"
>
<
span
>
Webpages Listing Institutions and Organisations Connected to NREN Networks
</
span
>
</
Link
>
<
Link
to
=
"/connected-proportion"
>
<
span
>
Proportion of Different Categories of Institutions Served by NRENs
</
span
>
</
Link
>
<
Link
to
=
"/connectivity-level"
>
<
span
>
Level of IP Connectivity by Institution Type
</
span
>
</
Link
>
<
Link
to
=
"/connection-carrier"
>
<
span
>
Methods of Carrying IP Traffic to Users
</
span
>
</
Link
>
<
Link
to
=
"/connectivity-load"
>
<
span
>
Connectivity Load
</
span
>
</
Link
>
<
Link
to
=
"/connectivity-growth"
>
<
span
>
Connectivity Growth
</
span
>
</
Link
>
<
h6
className
=
"section-title"
>
Connected Users - Commercial
</
h6
>
<
Row
>
<
Link
to
=
"/commercial-charging-level"
className
=
"link-text-underline"
>
<
span
>
Commercial Charging Level
</
span
>
</
Link
>
</
Row
>
<
Row
>
<
Link
to
=
"/commercial-connectivity"
className
=
"link-text-underline"
>
<
span
>
Commercial Connectivity
</
span
>
</
Link
>
</
Row
>
<
Link
to
=
"/commercial-charging-level"
>
<
span
>
Commercial Charging Level
</
span
>
</
Link
>
<
Link
to
=
"/commercial-connectivity"
>
<
span
>
Commercial Connectivity
</
span
>
</
Link
>
</
Sidebar
>
)
}
Loading