mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
example dialog
This commit is contained in:
parent
06e72538d3
commit
80fc6523b7
5 changed files with 233 additions and 2 deletions
16
src/containers/dialogs/ExampleDialog/index.tsx
Normal file
16
src/containers/dialogs/ExampleDialog/index.tsx
Normal file
|
@ -0,0 +1,16 @@
|
|||
import React, { FC } from "react";
|
||||
import { ScrollDialog } from "../ScrollDialog";
|
||||
|
||||
interface IProps {}
|
||||
|
||||
const ExampleDialog: FC<IProps> = ({}) => {
|
||||
const title = <div>title</div>;
|
||||
const buttons = <div>buttons</div>;
|
||||
return (
|
||||
<ScrollDialog buttons={buttons} width={720}>
|
||||
<div style={{ height: 1400 }}>test</div>
|
||||
</ScrollDialog>
|
||||
);
|
||||
};
|
||||
|
||||
export { ExampleDialog };
|
Loading…
Add table
Add a link
Reference in a new issue