feat: Add a large collection of emoji and other frontend assets, including a sound file, and a backend package.json.

This commit is contained in:
Bryan1029384756
2026-01-06 17:58:56 -06:00
parent f531301863
commit abedd78893
3795 changed files with 10981 additions and 229 deletions

View File

@@ -4,10 +4,14 @@ import { HashRouter } from 'react-router-dom';
import App from './App';
import './index.css';
import { VoiceProvider } from './contexts/VoiceContext';
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<HashRouter>
<App />
</HashRouter>
<VoiceProvider>
<HashRouter>
<App />
</HashRouter>
</VoiceProvider>
</React.StrictMode>,
);