Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
Move Button, StoreNotice and StoreNoticesContainer components into th…
Browse files Browse the repository at this point in the history
…e components package
  • Loading branch information
alexflorisca committed Nov 14, 2023
1 parent 0101524 commit 1fc4b9d
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/checkout/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ export { default as ExperimentalOrderLocalPickupPackages } from './order-local-p
export { default as Panel } from '../../components/panel';
export { default as Button } from './button';
export { default as Label } from './label';
export { default as StoreNoticesContainer } from './store-notices-container';
export { default as StoreNoticesContainer } from '../../components/store-notices-container';
export { default as CheckboxControl } from './checkbox-control';
export {
default as ValidatedTextInput,
ValidatedTextInputHandle,
} from './text-input/validated-text-input';
export { default as TextInput } from './text-input/text-input';
export { default as ValidationInputError } from './validation-input-error';
export { default as StoreNotice } from './store-notice';
export { default as StoreNotice } from '../../components/store-notice';
6 changes: 6 additions & 0 deletions packages/components/button/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* External dependencies
*/
import Button from '@woocommerce/base-components/button';

export default Button;
3 changes: 3 additions & 0 deletions packages/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export { default as Button } from './button';
export { default as CheckboxList } from './checkbox-list';
export { Chip, RemovableChip } from './chip';
export { default as FormStep } from './form-step';
Expand All @@ -13,5 +14,7 @@ export type { RadioControlOption as RadioControlOptionType } from './radio-contr
export { default as RadioControlAccordion } from './radio-control-accordion';
export { default as SortSelect } from './sort-select';
export { default as Spinner } from './spinner';
export { default as StoreNotice } from './store-notice';
export { default as StoreNoticesContainer } from './store-notices-container';
export { default as Textarea } from './textarea';
export { default as Title } from './title';

0 comments on commit 1fc4b9d

Please sign in to comment.