mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-26 05:16:41 +07:00
better scroll dialog
This commit is contained in:
parent
782ef41eda
commit
0c2229d9af
13 changed files with 221 additions and 27 deletions
16
src/containers/dialogs/TestDialog/index.tsx
Normal file
16
src/containers/dialogs/TestDialog/index.tsx
Normal file
|
@ -0,0 +1,16 @@
|
|||
import React, { FC } from 'react';
|
||||
import { BetterScrollDialog } from '../BetterScrollDialog';
|
||||
import * as styles from './styles.scss';
|
||||
|
||||
interface IProps {}
|
||||
|
||||
const TestDialog: FC<IProps> = ({}) => (
|
||||
<BetterScrollDialog
|
||||
header={<div className={styles.head}>HEAD</div>}
|
||||
footer={<div className={styles.footer}>FOOTER</div>}
|
||||
>
|
||||
<div className={styles.example} />
|
||||
</BetterScrollDialog>
|
||||
);
|
||||
|
||||
export { TestDialog };
|
Loading…
Add table
Add a link
Reference in a new issue