@wordpress/components
Version:
UI components for WordPress.
41 lines (27 loc) • 765 B
Markdown
<div class="callout callout-alert">
This feature is still experimental. “Experimental” means this is an early implementation subject to drastic and breaking changes.
</div>
`View` is a core component that renders everything in the library. It is the principle component in the entire library.
**Everything** is a `View`, and a `View` is **everything**.
```jsx
import {
__experimentalText as Text,
__experimentalView as View,
} from '@wordpress/components';
function Example() {
return (
<View>
<Text>Code is Poetry</Text>
</View>
);
}
```
**Type**: `string`,`E`
Render the component as another React Component or HTML Element.
**Type**: `InterpolatedCSS`
Render custom CSS using the style system.