mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-15 19:16:19 +00:00
12 lines
235 B
JavaScript
12 lines
235 B
JavaScript
import { renderToString } from 'preact-render-to-string';
|
|
|
|
export {
|
|
renderToString,
|
|
renderToString as renderToStaticMarkup
|
|
} from 'preact-render-to-string';
|
|
|
|
export default {
|
|
renderToString,
|
|
renderToStaticMarkup: renderToString
|
|
};
|