components
This commit is contained in:
commit
009a214b40
40 changed files with 966 additions and 0 deletions
16
SurveyFrontend/src/components/SaveButton/SaveButton.tsx
Normal file
16
SurveyFrontend/src/components/SaveButton/SaveButton.tsx
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import React from 'react'
|
||||
import styles from './SaveButton.module.css'
|
||||
|
||||
interface CreateSurveyButtonProps {
|
||||
// onClick(): void;
|
||||
}
|
||||
|
||||
const SaveButton: React.FC<CreateSurveyButtonProps> = ({}) => {
|
||||
return (
|
||||
<button className={styles.createSurveyButton}>
|
||||
Сохранить
|
||||
</button>
|
||||
);
|
||||
}
|
||||
|
||||
export default SaveButton;
|
||||
Loading…
Add table
Add a link
Reference in a new issue