chore: reformat code

This commit is contained in:
Rafael Taranto 2025-05-12 14:49:39 +01:00
parent 3d930aa73b
commit aedabcbdee
509 changed files with 6030 additions and 4266 deletions

View file

@ -7,7 +7,7 @@ import classnames from 'classnames'
const cardState = Object.freeze({
DEFAULT: 'default',
SHRUNK: 'shrunk',
EXPANDED: 'expanded'
EXPANDED: 'expanded',
})
const CollapsibleCard = ({ className, state, shrunkComponent, children }) => {
@ -19,7 +19,7 @@ const CollapsibleCard = ({ className, state, shrunkComponent, children }) => {
}
CollapsibleCard.propTypes = {
shrunkComponent: PropTypes.node.isRequired
shrunkComponent: PropTypes.node.isRequired,
}
export default CollapsibleCard