Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sashuk committed Feb 25, 2025
1 parent 14d1c0b commit 08770d5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState } from 'react'
import { Button, Container, Section } from '@toptal/picasso'
import { Button, Container, Section, Typography } from '@toptal/picasso'
import { SPACING_4 } from '@toptal/picasso-utils'

const Example = () => {
Expand All @@ -20,7 +20,7 @@ const Example = () => {
title='First section'
collapsed={!sectionIsOpened}
>
<p>First section content</p>
<Typography>First section content</Typography>
<Button onClick={() => setSectionIsOpened(false)}>
Close section
</Button>
Expand Down

0 comments on commit 08770d5

Please sign in to comment.