Export components by default

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-08-07 08:54:40 +02:00
parent 2f904cccce
commit 5c90736213
No known key found for this signature in database
GPG key ID: CC823428E9B582FB
4 changed files with 6 additions and 4 deletions

View file

@ -93,7 +93,7 @@ const CallTypeIcon: React.FC<{ type: CallType }> = ({ type }) => {
return <div className={classes} />;
};
export const CallViewHeader: React.FC<CallViewHeaderProps> = ({
const CallViewHeader: React.FC<CallViewHeaderProps> = ({
type,
pipMode = false,
callRooms = [],
@ -130,3 +130,5 @@ export const CallViewHeader: React.FC<CallViewHeaderProps> = ({
</div>
);
};
export default CallViewHeader;