import { createRemoteComponent } from '@remote-ui/core';

/**
 * A View is a generic container component. Its contents will always be their
 * “natural” size, so this component can be useful in layout components (like `Layout`, `Tiles`,
 * `BlockStack`, `InlineStack`) that would otherwise stretch their children to fit.
 */
const View = createRemoteComponent('View');

export { View };
