diff --git a/react-spaces/src/components/FixedSizeContainer.tsx b/react-spaces/src/components/FixedSizeContainer.tsx index 545ff17..ba28c5b 100644 --- a/react-spaces/src/components/FixedSizeContainer.tsx +++ b/react-spaces/src/components/FixedSizeContainer.tsx @@ -3,6 +3,7 @@ import './FixedSizeContainer.scss'; import * as Spaces from './Space'; interface IProps { + className?: string, style?: React.CSSProperties, width?: number, height: number @@ -19,7 +20,7 @@ export const Fixed : React.FC = (props) => { return (
diff --git a/react-spaces/src/components/FullPageContainer.tsx b/react-spaces/src/components/FullPageContainer.tsx index cc96e73..42e2056 100644 --- a/react-spaces/src/components/FullPageContainer.tsx +++ b/react-spaces/src/components/FullPageContainer.tsx @@ -3,6 +3,7 @@ import './FullPageContainer.scss'; import * as Spaces from './Space'; interface IProps { + className?: number, left?: number, top?: number, right?: number, @@ -11,7 +12,7 @@ interface IProps { export const ViewPort : React.FC = (props) => (