UNPKG
flashcardui
Version:
latest (1.1.3)
next (1.1.3-0)
1.1.3
1.1.3-0
1.1.2
1.1.1
1.1.0
1.0.0
> UI library for flash card application
github.com/GodsonAddy/flashcardui
GodsonAddy/flashcardui
flashcardui
/
dist
/
components
/
Questionnaire
/
Questionnaire.d.ts
6 lines
(5 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
HTMLAttributes
}
from
'react'
;
export
interface
QuestionnaireProps
extends
HTMLAttributes
<
HTMLElement
> {
content
:
string
; }
export
declare
const
Questionnaire
:
(
{ content, ...props }:
QuestionnaireProps
) =>
JSX
.
Element
;