mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
fix broken import
This commit is contained in:
parent
39a7ecce31
commit
d047c787b7
3 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
|||
//QuestionType.test.tsx
|
||||
// Superfluous test now that gift-pegjs has TypeScript types (and its own tests)
|
||||
import { Question } from 'gift-pegjs';
|
||||
|
||||
const sampleStem = 'Sample question stem';
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
// TextType.test.ts
|
||||
|
||||
import textType from "src/components/GiftTemplate/templates/TextType";
|
||||
import { textType } from "src/components/GiftTemplate/templates/TextType";
|
||||
import { TextFormat } from "gift-pegjs";
|
||||
|
||||
describe('TextType', () => {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
import React, { useState } from 'react';
|
||||
import '../questionStyle.css';
|
||||
import { Button, TextField } from '@mui/material';
|
||||
import textType from '../../GiftTemplate/templates/TextType';
|
||||
import { textType } from '../../GiftTemplate/templates/TextType';
|
||||
import { TextFormat, NumericalAnswer, isHighLowNumericalAnswer, isMultipleNumericalAnswer, isRangeNumericalAnswer, isSimpleNumericalAnswer, SimpleNumericalAnswer, RangeNumericalAnswer, HighLowNumericalAnswer } from 'gift-pegjs';
|
||||
import DOMPurify from 'dompurify';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue