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
+12
View File
@@ -0,0 +1,12 @@
---
title:
slug: /
---
import {Redirect} from '@docusaurus/router';
function Home() {
return <Redirect to="/docs/create-modify-element" />;
}
<Home/>