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