woocommerce/packages/js/experimental
rjchow 43f81cbf69 Bumped WCA JS package version numbers 2022-03-22 16:08:24 +08:00
..
src Moved WCA Packages 2022-03-18 14:25:26 -07:00
typings Moved WCA Packages 2022-03-18 14:25:26 -07:00
.npmrc Moved WCA Packages 2022-03-18 14:25:26 -07:00
CHANGELOG.md Bumped WCA JS package version numbers 2022-03-22 16:08:24 +08:00
README.md Moved WCA Packages 2022-03-18 14:25:26 -07:00
jest.config.json Moved WCA Packages 2022-03-18 14:25:26 -07:00
package.json Bumped WCA JS package version numbers 2022-03-22 16:08:24 +08:00
project.json Moved WCA Packages 2022-03-18 14:25:26 -07:00
tsconfig-cjs.json Moved WCA Packages 2022-03-18 14:25:26 -07:00
tsconfig.json Moved WCA Packages 2022-03-18 14:25:26 -07:00
webpack.config.js Moved WCA Packages 2022-03-18 14:25:26 -07:00

README.md

Experimental

This is a private package not meant for use by third parties.

A collection of component imports and exports that are aliases for components transitioning from experimental to non-experimental. This package prevents the component from being undefined when the @wordpress/components library version is unclear.

It also contains several in-development components that are slated for inclusion in later releases of @woocommerce/components.

Installation

Install the module

pnpm install @woocommerce/experimental --save

Usage

Simply import the component name with the __experimental prefix. If found, the non-experimental version will be imported and if not, this will fallback to the experimental version.

import { Text } from '@woocommerce/experimental';

render() {
	return (
		<Text>
			
		</Text>
	);
}