We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4fab06 commit 4cf587dCopy full SHA for 4cf587d
3 files changed
docs/2. Running Sourcify/6-Signature.mdx
@@ -0,0 +1,8 @@
1
+---
2
+id: 4byte Service
3
+slug: /running-4byte
4
5
+
6
+import EmbedReadme4byteService from "./EmbedReadme4byteService"
7
8
+<EmbedReadme4byteService />
docs/2. Running Sourcify/6-Tests.md docs/2. Running Sourcify/7-Tests.mddocs/2. Running Sourcify/6-Tests.md renamed to docs/2. Running Sourcify/7-Tests.md
docs/2. Running Sourcify/EmbedReadme4byteService.jsx
@@ -0,0 +1,19 @@
+import EmbedReadme from "../EmbedReadme";
+import React from "react";
+const repo = "argotorg/sourcify";
+const branch = "master";
+const readmePath = "/services/4byte/README.md";
+const rawBaseUrl = "https://raw.githubusercontent.com";
+const pageBaseUrl = "https://github.com";
9
+export default function EmbedReadmeRepoSourcifyDev() {
10
+ return (
11
+ <EmbedReadme
12
+ repo={repo}
13
+ branch={branch}
14
+ readmePath={readmePath}
15
+ rawBaseUrl={rawBaseUrl}
16
+ pageBaseUrl={pageBaseUrl}
17
+ />
18
+ );
19
+}
0 commit comments