Adding in tailwindcss and configs

This commit is contained in:
Frank Delaguila
2022-03-12 19:41:39 -07:00
parent d8beede420
commit ef5cdba060
8 changed files with 59 additions and 10 deletions

View File

@@ -1,8 +1,15 @@
import { Suspense } from 'react';
import { Loader } from '@react-three/drei';
import { render } from 'react-dom';
import App from '../components/App';
render(
<App />,
<>
<Suspense fallback={null}>
<App />
</Suspense>
<Loader />
</>,
document.getElementById("root") );
if (module['hot']) {