daily-examples/custom/fitness-demo/components/Tray/index.js

21 lines
395 B
JavaScript

import React from 'react';
import ChatTray from './Chat';
import RecordTray from './Record';
import ScreenShareTray from './ScreenShare';
import StreamTray from './Stream';
import ViewTray from './View';
export const Tray = () => {
return (
<>
<ChatTray />
<ScreenShareTray />
<RecordTray />
<StreamTray />
<ViewTray />
</>
);
};
export default Tray;