diff options
author | August Skare <post@augustskare.no> | 2018-10-22 19:24:43 +0800 |
---|---|---|
committer | August Skare <post@augustskare.no> | 2018-10-22 19:27:49 +0800 |
commit | 00afb2440dfe41f19c40030de60ffd274a782a04 (patch) | |
tree | a7eb9abaa2b1769ba33e79ff50b4cee89335d2e4 /packages/dev-tools-pages/ts/pages/Compiler.tsx | |
parent | 8cf720986eb464a39e634ca59c4c3b20b3cd368d (diff) | |
download | dexon-sol-tools-00afb2440dfe41f19c40030de60ffd274a782a04.tar dexon-sol-tools-00afb2440dfe41f19c40030de60ffd274a782a04.tar.gz dexon-sol-tools-00afb2440dfe41f19c40030de60ffd274a782a04.tar.bz2 dexon-sol-tools-00afb2440dfe41f19c40030de60ffd274a782a04.tar.lz dexon-sol-tools-00afb2440dfe41f19c40030de60ffd274a782a04.tar.xz dexon-sol-tools-00afb2440dfe41f19c40030de60ffd274a782a04.tar.zst dexon-sol-tools-00afb2440dfe41f19c40030de60ffd274a782a04.zip |
remove contentBlock from content component
Diffstat (limited to 'packages/dev-tools-pages/ts/pages/Compiler.tsx')
-rw-r--r-- | packages/dev-tools-pages/ts/pages/Compiler.tsx | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/packages/dev-tools-pages/ts/pages/Compiler.tsx b/packages/dev-tools-pages/ts/pages/Compiler.tsx index 8e2c7f058..96f26a978 100644 --- a/packages/dev-tools-pages/ts/pages/Compiler.tsx +++ b/packages/dev-tools-pages/ts/pages/Compiler.tsx @@ -16,6 +16,7 @@ function Compiler() { <Base context={context}> <CompilerComponent /> <Content> + <ContentBlock main title="Get started" /> <ContentBlock title="Required steps"> <List items={['Step 1', 'Step 2']} /> </ContentBlock> @@ -45,11 +46,14 @@ const artifactAdapter = new SolCompilerArtifactAdapter(artifactsDir, contractsDi </Tabs> </ContentBlock> </Content> - <Content - title="Artifacts" - subtitle="Sol compiler uses solidity standard JSON output format for the artifacts. This way, you can define which parts of the artifact you need." - dark - > + <Content dark> + <ContentBlock main title="Artifacts"> + <p> + Sol compiler uses solidity standard JSON output format for the artifacts. This way, you can + define which parts of the artifact you need. + </p> + </ContentBlock> + <ContentBlock title="Production"> <p> Sol compiler uses solidity standard JSON output format for the artifacts. This way, you can |