mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-06 21:57:48 +01:00
8 lines
126 B
JavaScript
8 lines
126 B
JavaScript
export default function Raw({ children }) {
|
|
if (children.type === Raw) {
|
|
return [children];
|
|
}
|
|
|
|
return children;
|
|
}
|