mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 14:35:41 +00:00
e0ff596a02
tracks.css (539 LOC) → 8 per-section files in src/styles/tracks/ + an index.css. Same mechanic as the theme/components/layout splits. Concatenating reproduces the original byte stream (+1 trailing newline). Generated via /tmp/split-tracks-css.mjs.
18 lines
457 B
TypeScript
18 lines
457 B
TypeScript
import { StrictMode } from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import App from './App';
|
|
import { runPreReactBootstrap } from './app/bootstrap';
|
|
import './i18n';
|
|
import './styles/themes/index.css';
|
|
import './styles/layout/index.css';
|
|
import './styles/components/index.css';
|
|
import './styles/tracks/index.css';
|
|
|
|
runPreReactBootstrap();
|
|
|
|
ReactDOM.createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>
|
|
);
|