mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
18 lines
382 B
TypeScript
18 lines
382 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Qwen Team
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import ReactDOM from 'react-dom/client';
|
|
import { App } from './App.js';
|
|
import './tailwind.css';
|
|
import './App.scss';
|
|
import './ClaudeCodeStyles.css';
|
|
|
|
const container = document.getElementById('root');
|
|
if (container) {
|
|
const root = ReactDOM.createRoot(container);
|
|
root.render(<App />);
|
|
}
|