Refactor - On index page, redirect to first doc

This commit is contained in:
2020-10-16 19:52:33 +05:30
parent dde35f6e36
commit 46a004627b
2 changed files with 12 additions and 1 deletions
-1
View File
@@ -2,7 +2,6 @@
id: create-modify-element
# sidebar_label: DOM Manipulation
title: DOM Manipulation
slug: /
---
import Admonition from "../components/Admonition"
+12
View File
@@ -0,0 +1,12 @@
---
title:
slug: /
---
import {Redirect} from '@docusaurus/router';
function Home() {
return <Redirect to="/docs/create-modify-element" />;
}
<Home/>