mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00
7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
import { FC } from 'react'
|
|
|
|
export const PdfPreviewMessages: FC<React.PropsWithChildren> = ({
|
|
children,
|
|
}) => {
|
|
return <div className="pdf-preview-messages">{children}</div>
|
|
}
|