Skip to content

Commit

Permalink
Export select widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
ir4y committed Mar 6, 2024
1 parent beb5819 commit 0a3dc78
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interface ChoiceQuestionSelectProps {
repeats?: boolean;
}

function ChoiceQuestionSelect(props: ChoiceQuestionSelectProps) {
export function ChoiceQuestionSelect(props: ChoiceQuestionSelectProps) {
const { value, onChange, options, repeats = false } = props;

return (
Expand Down Expand Up @@ -79,7 +79,7 @@ interface ChoiceQuestionValueSetProps {
repeats?: boolean;
}

function ChoiceQuestionValueSet(props: ChoiceQuestionValueSetProps) {
export function ChoiceQuestionValueSet(props: ChoiceQuestionValueSetProps) {
const { answerValueSet, value, onChange, repeats = false } = props;
const valueSetId = answerValueSet.split('/').slice(-1);

Expand Down

0 comments on commit 0a3dc78

Please sign in to comment.