From e9d52bd1cc55b4a8f09ce13bebcc0d428acfd5a4 Mon Sep 17 00:00:00 2001 From: "Fred K. Schott" Date: Thu, 29 Jul 2021 22:03:33 -0700 Subject: move translated nl docs --- docs/src/components/DocSidebar/EditOnGithub.tsx | 29 +++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 docs/src/components/DocSidebar/EditOnGithub.tsx (limited to 'docs/src/components/DocSidebar/EditOnGithub.tsx') diff --git a/docs/src/components/DocSidebar/EditOnGithub.tsx b/docs/src/components/DocSidebar/EditOnGithub.tsx new file mode 100644 index 000000000..e6e757f5f --- /dev/null +++ b/docs/src/components/DocSidebar/EditOnGithub.tsx @@ -0,0 +1,29 @@ +import type { FunctionalComponent } from 'preact'; +import { h } from 'preact'; + +const EditOnGithub: FunctionalComponent<{ href: string }> = ({ href }) => { + return ( + + + Edit this page + + ); +}; + +export default EditOnGithub; -- cgit v1.2.3