- Deleted Broadcast, AudioConference, Chat, ControlBar, PreJoin, VideoConference components. - Removed demo configuration file and related context. - Cleaned up index files and hooks related to destinations and scenes. - Introduced new Header and DestinationModal components for better UI management. - Updated global styles and layout structure for improved responsiveness.
16 lines
391 B
TypeScript
16 lines
391 B
TypeScript
import React from 'react'
|
|
import StudioLayout from './layouts/StudioLayout'
|
|
|
|
const App: React.FC = () => {
|
|
return (
|
|
<StudioLayout>
|
|
<div className="p-4 text-white">
|
|
<h1 className="text-2xl font-semibold">AvanzaCast - Studio</h1>
|
|
<p className="text-sm text-gray-300 mt-2">Panel de pruebas del estudio.</p>
|
|
</div>
|
|
</StudioLayout>
|
|
)
|
|
}
|
|
|
|
export default App
|