Noise & Gradient Generation

This commit is contained in:
Xevion
2022-11-24 19:13:52 -06:00
parent 7298ae0945
commit 8aca135803
5 changed files with 184 additions and 0 deletions

10
src/main.tsx Normal file
View File

@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App'
import './index.scss'
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>
)