This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
viscord/packages/renderer/src/index.tsx

18 lines
299 B
TypeScript
Raw Normal View History

2022-07-20 16:04:09 -04:00
import React from 'react';
import ReactDOM from 'react-dom';
2022-07-21 23:45:52 -04:00
import Channels from './pages/Channels';
2022-07-20 16:04:09 -04:00
import Chat from './pages/Chat';
ReactDOM.render(
(
<>
2022-07-21 23:45:52 -04:00
{/* <Chat
2022-07-20 16:04:09 -04:00
2022-07-21 23:45:52 -04:00
></Chat> */}
<Channels
></Channels>
2022-07-20 16:04:09 -04:00
</>
),
document.getElementById('app'),
);