assayo/src/ts/components/Quize/index.tsx
Бахирев 7c334250b0 update
2024-06-20 00:50:09 +03:00

20 lines
368 B
TypeScript

import React from 'react';
import IQuize from './interfaces/Quize';
import QuizePage from './components/index';
import example from './helpers/example';
interface IQuizeProps {
}
function Quize({}: IQuizeProps): React.ReactElement | null {
return (
<QuizePage
quize={example as IQuize}
onEnd={() => {
}}
/>
);
}
export default Quize;