Merge pull request #6576 from SimonBrandner/fix/export-default

Export components by default
This commit is contained in:
Michael Telatynski 2021-08-07 15:15:57 +01:00 committed by GitHub
commit 7598ce6ca3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 4 deletions

View file

@ -94,7 +94,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 = [],
@ -131,3 +131,5 @@ export const CallViewHeader: React.FC<CallViewHeaderProps> = ({
</div>
);
};
export default CallViewHeader;