diff options
Diffstat (limited to 'packages/dev-tools-pages/ts/context')
-rw-r--r-- | packages/dev-tools-pages/ts/context/compiler.tsx | 2 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/context/cov.tsx | 2 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/context/index.tsx | 11 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/context/profiler.tsx | 2 | ||||
-rw-r--r-- | packages/dev-tools-pages/ts/context/trace.tsx | 2 |
5 files changed, 14 insertions, 5 deletions
diff --git a/packages/dev-tools-pages/ts/context/compiler.tsx b/packages/dev-tools-pages/ts/context/compiler.tsx index e14c1936e..88402e4f6 100644 --- a/packages/dev-tools-pages/ts/context/compiler.tsx +++ b/packages/dev-tools-pages/ts/context/compiler.tsx @@ -1,6 +1,6 @@ import Icon from 'ts/icons/logos/compiler.svg'; -export default { +export const context = { title: 'sol-compiler', name: 'compiler', subtitle: 'Solidity compilation that just works', diff --git a/packages/dev-tools-pages/ts/context/cov.tsx b/packages/dev-tools-pages/ts/context/cov.tsx index f2f4d5dad..eea3ccca6 100644 --- a/packages/dev-tools-pages/ts/context/cov.tsx +++ b/packages/dev-tools-pages/ts/context/cov.tsx @@ -1,6 +1,6 @@ import Icon from 'ts/icons/logos/cov.svg'; -export default { +export const context = { title: 'sol-cov', name: 'cov', subtitle: 'Solidity code coverage', diff --git a/packages/dev-tools-pages/ts/context/index.tsx b/packages/dev-tools-pages/ts/context/index.tsx index 54556a3fd..3aba2f34c 100644 --- a/packages/dev-tools-pages/ts/context/index.tsx +++ b/packages/dev-tools-pages/ts/context/index.tsx @@ -1,5 +1,14 @@ import { createContext } from 'react'; +interface ContextInterface { + title?: string; + name?: string; + subtitle?: string; + tagline?: string; + icon?: React.ReactNode; + colors?: any; +} + const ThemeContext = createContext({}); -export default ThemeContext; +export { ThemeContext, ContextInterface }; diff --git a/packages/dev-tools-pages/ts/context/profiler.tsx b/packages/dev-tools-pages/ts/context/profiler.tsx index 9593c08ec..507fa663d 100644 --- a/packages/dev-tools-pages/ts/context/profiler.tsx +++ b/packages/dev-tools-pages/ts/context/profiler.tsx @@ -1,6 +1,6 @@ import Icon from 'ts/icons/logos/profiler.svg'; -export default { +export const context = { title: 'sol-profiler', name: 'profiler', subtitle: 'Gas profiling for Solidity', diff --git a/packages/dev-tools-pages/ts/context/trace.tsx b/packages/dev-tools-pages/ts/context/trace.tsx index 697a4263a..fea72d4c2 100644 --- a/packages/dev-tools-pages/ts/context/trace.tsx +++ b/packages/dev-tools-pages/ts/context/trace.tsx @@ -1,6 +1,6 @@ import Icon from 'ts/icons/logos/trace.svg'; -export default { +export const context = { title: 'sol-trace', name: 'trace', subtitle: 'Human-readable stack traces', |