Skip to content

Commit e0dc05b

Browse files
author
Matthew Holloway
committed
React v17 release
1 parent 44b45de commit e0dc05b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-accessible-accordion",
3-
"version": "3.3.1",
3+
"version": "3.3.4",
44
"description": "Accessible Accordion component for React",
55
"main": "dist/umd/index.js",
66
"module": "dist/es/index.js",

src/components/AccordionItemPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const AccordionItemPanel = ({
99
className = 'accordion__panel',
1010
id,
1111
...rest
12-
}: Props) => {
12+
}: Props): JSX.Element => {
1313
const renderChildren = ({ panelAttributes }: ItemContext): JSX.Element => {
1414
if (id) {
1515
assertValidHtmlId(id);

0 commit comments

Comments
 (0)