diff options
Diffstat (limited to 'src/containers/Page.tsx')
-rw-r--r-- | src/containers/Page.tsx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/containers/Page.tsx b/src/containers/Page.tsx index d3a087a..73b122e 100644 --- a/src/containers/Page.tsx +++ b/src/containers/Page.tsx @@ -1,10 +1,7 @@ import React from 'react'; import Paper from '../components/Paper'; -import Button, { Props as ButtonProps } from '../components/Button'; - -export interface Action extends ButtonProps { - name: string; -} +import Button from '../components/Button'; +import { Action } from './Service/ServiceContext'; interface Props { title?: string; |