feat: info page redesign (#390)
* feat: info page redesign * feat: add chequebook card
This commit is contained in:
@@ -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>
|
||||
}
|
||||
Reference in New Issue
Block a user