diff --git a/app/components/column.js b/app/components/column.js index 1a06505..df3a7f3 100644 --- a/app/components/column.js +++ b/app/components/column.js @@ -18,6 +18,7 @@ type Props = { className?: string, children: Node, width?: string, + id?: string, }; export const ColumnComponent = ({ children, ...props }: Props) => ( @@ -29,4 +30,5 @@ ColumnComponent.defaultProps = { justifyContent: 'flex-start', className: '', width: '', + id: '', }; diff --git a/app/components/text.js b/app/components/text.js index d663fd5..aa87d0f 100644 --- a/app/components/text.js +++ b/app/components/text.js @@ -23,6 +23,7 @@ type Props = { className?: string, size?: string | number, align?: string, + id?: string, }; export const TextComponent = ({ @@ -32,8 +33,10 @@ export const TextComponent = ({ className, size, align, + id, }: Props) => ( ( { ) : ( - {error && } + {error && }