diff options
author | Fabio Berger <me@fabioberger.com> | 2018-10-03 23:37:59 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-10-03 23:37:59 +0800 |
commit | 437612f8b8c28fb384698c5c2b331e173cee8767 (patch) | |
tree | 5f182d44c0fa3bc2e29667d9b12e58b1cd2542d1 /packages/react-shared/src/index.ts | |
parent | ab855cdd1cfa2e4fcc45499508dca9c9e8733b61 (diff) | |
download | dexon-sol-tools-437612f8b8c28fb384698c5c2b331e173cee8767.tar dexon-sol-tools-437612f8b8c28fb384698c5c2b331e173cee8767.tar.gz dexon-sol-tools-437612f8b8c28fb384698c5c2b331e173cee8767.tar.bz2 dexon-sol-tools-437612f8b8c28fb384698c5c2b331e173cee8767.tar.lz dexon-sol-tools-437612f8b8c28fb384698c5c2b331e173cee8767.tar.xz dexon-sol-tools-437612f8b8c28fb384698c5c2b331e173cee8767.tar.zst dexon-sol-tools-437612f8b8c28fb384698c5c2b331e173cee8767.zip |
Use same Link UI component for react-scroll links
Diffstat (limited to 'packages/react-shared/src/index.ts')
-rw-r--r-- | packages/react-shared/src/index.ts | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/packages/react-shared/src/index.ts b/packages/react-shared/src/index.ts index 3b50c0117..793214a87 100644 --- a/packages/react-shared/src/index.ts +++ b/packages/react-shared/src/index.ts @@ -4,8 +4,17 @@ export { MarkdownCodeBlock } from './components/markdown_code_block'; export { MarkdownSection } from './components/markdown_section'; export { NestedSidebarMenu } from './components/nested_sidebar_menu'; export { SectionHeader } from './components/section_header'; +export { Link } from './components/link'; -export { HeaderSizes, Styles, MenuSubsectionsBySection, EtherscanLinkSuffixes, Networks } from './types'; +export { + HeaderSizes, + Styles, + MenuSubsectionsBySection, + EtherscanLinkSuffixes, + Networks, + LinkType, + ALink, +} from './types'; export { utils } from './utils/utils'; export { constants } from './utils/constants'; |