bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/pads/content/component.jsx

28 lines
551 B
React
Raw Normal View History

import React from 'react';
import Styled from './styles';
const PadContent = ({
content,
2022-04-08 02:35:24 +08:00
}) => {
const contentSplit = content.split('<body>');
const contentStyle = `
<body>
<style type="text/css">
body {
${Styled.contentText}
}
</style>
`;
const contentWithStyle = [contentSplit[0], contentStyle, contentSplit[1]].join('');
return (
<Styled.Wrapper>
<Styled.Iframe
title="shared notes viewing mode"
srcDoc={contentWithStyle}
/>
</Styled.Wrapper>
);
};
export default PadContent;