Skip to content

Commit 3e93a5f

Browse files
fix type
1 parent a8c5210 commit 3e93a5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/demos/Demos/DataGrid/Row/React/DataRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from 'react';
33

44
const formatDate = new Intl.DateTimeFormat('en-US').format;
55

6-
const DataRow = (rowInfo: DataGridTypes.RowTemplateData) => (
6+
const DataRow = (rowInfo: DataGridTypes.DataRowTemplateData) => (
77
<React.Fragment>
88
<tr className="main-row" role="row">
99
<td rowSpan={2} role="gridcell"><img src={rowInfo.data.Picture} alt={`Picture of ${rowInfo.data.FirstName} ${rowInfo.data.LastName}`} tabIndex={0} /></td>

0 commit comments

Comments
 (0)