mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-01-21 00:40:09 +00:00
feat: create constant for documenatation
This commit is contained in:
parent
2ae3316839
commit
1704ca4884
@ -36,6 +36,35 @@ export const MAC = 'MacOS'
|
||||
export const WINDOWS = 'Windows'
|
||||
export const LINUX = 'Linux'
|
||||
|
||||
type DocumentationItem =
|
||||
| { type: 'code'; content: string }
|
||||
| { type: 'link'; content: string }
|
||||
| { type: 'text'; content: string }
|
||||
|
||||
export const DOCUMENTATION: Record<string, Record<string, DocumentationItem[]>> = {
|
||||
Nethermind: {
|
||||
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
||||
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
||||
[LINUX]: [{ type: 'text', content: 'Text for linux' }],
|
||||
},
|
||||
Besu: {
|
||||
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
||||
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
||||
[LINUX]: [{ type: 'text', content: 'Text for linux' }],
|
||||
},
|
||||
Geth: {
|
||||
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
||||
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
||||
[LINUX]: [{ type: 'text', content: 'Text for linux' }],
|
||||
},
|
||||
Erigon: {
|
||||
[MAC]: [{ type: 'text', content: 'Text for mac' }],
|
||||
[WINDOWS]: [{ type: 'text', content: 'Text for windows' }],
|
||||
[LINUX]: [{ type: 'text', content: 'Text for linux' }],
|
||||
},
|
||||
Nimbus: {},
|
||||
}
|
||||
|
||||
// for now, this will be constant values
|
||||
export const CURRENCIES = {
|
||||
USD: 1583.42,
|
||||
|
Loading…
x
Reference in New Issue
Block a user