Browse Source

Probably the most surprising flow fix I ever made

master
meriadec 7 years ago
parent
commit
2dad3b58c3
No known key found for this signature in database GPG Key ID: 1D2FC2305E2CB399
  1. 2
      src/components/base/Box/index.js

2
src/components/base/Box/index.js

@ -59,7 +59,7 @@ const RawCard = styled(Box).attrs({ bg: 'white', p: 3 })`
border-radius: 5px;
`
export const Card = ({ title, ...props }: *) => {
export const Card = ({ title, ...props }: { title: string }) => {
if (title) {
return (
<Box flow={2}>

Loading…
Cancel
Save