Skip to content

Commit

Permalink
fix: type of service
Browse files Browse the repository at this point in the history
  • Loading branch information
desoindx committed Jun 27, 2022
1 parent fa1dcfd commit 88d74d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/src/components/Table/Table.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ const TableExample = () => {
<Row>
<Col>
<SimpleTable
fixedHeader
tableClassName="tableClassName"
fixedHeader={true}
tableID="tableID-1"
caption="Simple Table"
data={data.slice((page - 1) * 10, page * 10)}
Expand Down
4 changes: 2 additions & 2 deletions src/components/interface/Header/Service.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export type ServiceClassName = string | Object | any[];

export interface ServiceProps {
__TYPE?: any;
description?: string;
title: string;
description?: React.ReactElement<any>;
title: React.ReactElement<any>;
link?: string;
className?: ServiceClassName;
asLink?: React.ReactElement<any>;
Expand Down

0 comments on commit 88d74d3

Please sign in to comment.