feat(UtilityComponents): add Show component

This commit is contained in:
Aminejv 2021-08-24 17:34:31 +01:00
parent 344bde3e17
commit e0ce710e24

View File

@ -0,0 +1 @@
export const Show = ({ children, when, fallback = null }) => (when ? children : fallback);