1
0
Fork 0
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:
muerwre 2019-08-02 17:49:53 +07:00
parent 06e72538d3
commit 80fc6523b7
5 changed files with 233 additions and 2 deletions

View 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 };