Skip to content

Commit 5c032b1

Browse files
committed
lint
1 parent a029683 commit 5c032b1

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

example/src/ColumnProps.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,16 @@ const data: PropData[] = [
129129
type: "FooterElement",
130130
description: (
131131
<div>
132-
This property allows you to customize the content inside of a footer cell. The library will create
133-
a cell container for you with the proper column widths and resizability. If this field is
134-
defined, then this will get rendered inside of the cell container in the footer.
132+
This property allows you to customize the content inside of a footer cell. The library will
133+
create a cell container for you with the proper column widths and resizability. If this
134+
field is defined, then this will get rendered inside of the cell container in the footer.
135135
</div>
136136
)
137137
}
138138
];
139139

140-
const ColumnPropsTable = () => <StyledTable borders data={data} columns={columns} tableHeight={400} />;
140+
const ColumnPropsTable = () => (
141+
<StyledTable borders data={data} columns={columns} tableHeight={400} />
142+
);
141143

142144
export default ColumnPropsTable;

0 commit comments

Comments
 (0)