mirror of
https://github.com/bakhirev/assayo.git
synced 2025-09-01 18:19:43 +00:00
20 lines
368 B
TypeScript
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;
|