idea for customCSS loading / fixture

This commit is contained in:
S Rei 2023-02-15 12:05:48 +01:00
parent b2c1a82bc2
commit 4b1e832c5c

View File

@ -1,7 +1,7 @@
export default function Customcss({ options }) {
if (options.src) {
return (
<link href={options.src} type="text/css" rel="stylesheet"></link>
<link href={options.src} type="text/css" rel="stylesheet" />
);
}
}