generated from RENCI/react-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
216b43f
commit a5a39ea
Showing
18 changed files
with
153 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export * from './sidebar' | ||
export * from './sidebar'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import { Storm as HurricaneIcon } from '@mui/icons-material' | ||
import React from 'react'; | ||
import { Storm as HurricaneIcon } from '@mui/icons-material'; | ||
|
||
export const icon = <HurricaneIcon /> | ||
export const title = 'Hurricanes' | ||
export const trayContents = () => <div>hurricanes tray</div> | ||
export const icon = <HurricaneIcon />; | ||
export const title = 'Hurricanes'; | ||
export const trayContents = () => <div>hurricanes tray</div>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
import { Layers as LayersIcon } from '@mui/icons-material' | ||
import { TrayContents } from './tray-contents' | ||
import React from 'react'; | ||
import { Layers as LayersIcon } from '@mui/icons-material'; | ||
import { TrayContents } from './tray-contents'; | ||
|
||
export const icon = <LayersIcon /> | ||
export const icon = <LayersIcon />; | ||
|
||
export const title = 'Layers' | ||
export const title = 'Layers'; | ||
|
||
export const trayContents = TrayContents | ||
export const trayContents = TrayContents; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
import { Stack } from '@mui/joy' | ||
import { Tune as SettingsIcon } from '@mui/icons-material' | ||
import React from 'react'; | ||
import { Stack } from '@mui/joy'; | ||
import { Tune as SettingsIcon } from '@mui/icons-material'; | ||
|
||
import { SampleToggle } from './sample' | ||
import { SampleToggle } from './sample'; | ||
|
||
export const icon = <SettingsIcon /> | ||
export const icon = <SettingsIcon />; | ||
|
||
export const title = 'Settings' | ||
export const title = 'Settings'; | ||
|
||
export const trayContents = () => ( | ||
<Stack gap={ 2 } p={ 2 }> | ||
<SampleToggle /> | ||
</Stack> | ||
) | ||
); |
Oops, something went wrong.