Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Nos Hs2023
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Språksamlingane
stadnamn
Nos Hs2023
Commits
ccfc9a60
Commit
ccfc9a60
authored
6 years ago
by
Esko Ikkala
Browse files
Options
Downloads
Patches
Plain Diff
Add customizable theme
parent
4d1c99d3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/client/components/App.js
+15
-1
15 additions, 1 deletion
src/client/components/App.js
with
15 additions
and
1 deletion
src/client/components/App.js
+
15
−
1
View file @
ccfc9a60
import
React
from
'
react
'
;
import
{
MuiThemeProvider
,
createMuiTheme
}
from
'
@material-ui/core/styles
'
;
import
MapApp
from
'
../containers/MapApp
'
;
// import green from '@material-ui/core/colors/green';
import
deepOrange
from
'
@material-ui/core/colors/deepOrange
'
;
// import red from '@material-ui/core/colors/red';
// import amber from '@material-ui/core/colors/amber';
// import grey from '@material-ui/core/colors/grey';
const
theme
=
createMuiTheme
({
palette
:
{
primary
:
deepOrange
,
},
});
const
App
=
()
=>
(
<
MapApp
/>
<
MuiThemeProvider
theme
=
{
theme
}
>
<
MapApp
/>
<
/MuiThemeProvider
>
);
export
default
App
;
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