homepage/src/components/widgets/widget/raw.jsx
Denis Papec cd5162e39c
Refactored information widgets, improve widget-boxed style
Signed-off-by: Denis Papec <denis.papec@gmail.com>
2023-06-12 01:15:19 +01:00

8 lines
126 B
JavaScript

export default function Raw({ children }) {
if (children.type === Raw) {
return [children];
}
return children;
}