Skip to content

Commit

Permalink
Fix borked imports
Browse files Browse the repository at this point in the history
  • Loading branch information
FrederikBolding committed Jul 31, 2024
1 parent fa61960 commit b4170e0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ui/components/app/snaps/snap-ui-renderer/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { row } from './row';
import { address } from './address';
import { copyable } from './copyable';
import { button } from './button';
import { fileInput } from './file-input';
import { form } from './form';
import { input } from './input';
import { bold } from './bold';
Expand All @@ -16,6 +17,8 @@ import { link } from './link';
import { field } from './field';
import { dropdown } from './dropdown';
import { value } from './value';
import { checkbox } from './checkbox';
import { tooltip } from './tooltip';
import { card } from './card';

export const COMPONENT_MAPPING = {
Expand All @@ -29,6 +32,7 @@ export const COMPONENT_MAPPING = {
Row: row,
Address: address,
Button: button,
FileInput: fileInput,
Form: form,
Input: input,
Bold: bold,
Expand All @@ -37,6 +41,7 @@ export const COMPONENT_MAPPING = {
Field: field,
Dropdown: dropdown,
Value: value,
Cell: cell,
Checkbox: checkbox,
Tooltip: tooltip,
Card: card,
};

0 comments on commit b4170e0

Please sign in to comment.