feat: info page redesign (#390)

* feat: info page redesign

* feat: add chequebook card
This commit is contained in:
Vojtech Simetka
2022-06-18 17:09:13 +02:00
committed by GitHub
parent 41432bc346
commit caea5ae309
5 changed files with 214 additions and 50 deletions
+9
View File
@@ -0,0 +1,9 @@
import { ReactElement, CSSProperties } from 'react'
interface Props {
style?: CSSProperties
}
export default function Card({ style }: Props): ReactElement {
return <div style={Object.assign({}, style, { width: '100%', height: '380px', backgroundColor: '#f3f3f3' })}></div>
}