2 posts tagged with "effector"

View All Tags

Media queries with effector

Zero Bias

Zero Bias

Effector Core Team

Hi!

In this article I will show how to make react component which will work like this

const Button = () => (
<>
<Screen landscape large>
[large wide button]
</Screen>
<Screen portrait small medium>
[compact button]
</Screen>
</>
)