Revert "Bugfix/spelling error" #17

Closed
MarciiTheDev wants to merge 39 commits from revert-16-bugfix/SpellingError into main
Showing only changes of commit 756f3f4769 - Show all commits

View File

@ -1,12 +1,14 @@
import React from 'react'; import React, { useEffect } from 'react';
export default function Home() { export default function Home() {
useEffect(() => {
window.location.href = "docs/intro";
});
return ( return (
<script> <script>
{
window.location.href = "./docs/intro"
}
</script> </script>
); );
} }