mirror of
https://github.com/gethomepage/homepage.git
synced 2026-01-02 13:02:11 +08:00
8 lines
126 B
JavaScript
8 lines
126 B
JavaScript
export default function Raw({ children }) {
|
|
if (children.type === Raw) {
|
|
return [children];
|
|
}
|
|
|
|
return children;
|
|
}
|