@wordpress/components
Version:
UI components for WordPress.
23 lines (16 loc) • 411 B
Markdown
This directory contains the code for next Component System.
More information can be found in the original Github issue:
https://github.com/WordPress/gutenberg/issues/27484
(This is still very much a work in progress)
```jsx
import { Text, View } from '@wordpress/components/ui';
function Example() {
return (
<View>
<Text>Code is Poetry</Text>
</View>
);
}
```