# `` Renders only one of its children that matches width query. ## Usage ```jsx import {WidthQuery} from 'libreact/lib/WidthQuery'; import {View} from 'libreact/lib/View'; This will not render. This will render! ``` ## Props - `width` — required, number, width value to match queries against. ## Children Children of `` must be an array of at least two React elements. Use `minWidth` and `maxWidth` properties to match against the width, first matched child will be rendered. You can use any react component as children or the [``](./View.md) wrapper component that is simply a shell that just renders its children.