mirror of
https://github.com/filecoin-project/slate.git
synced 2024-11-27 10:52:41 +03:00
2 lines
91 B
JavaScript
2 lines
91 B
JavaScript
|
export const Show = ({ children, when, fallback = null }) => (when ? children : fallback);
|