yes. #20

Merged
IBims2CooleTim merged 29 commits from main into bugfix/SpellingError 2023-11-17 22:51:44 +00:00
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>
); );
} }