Gitiles
Code Review
Sign In
gerrit.nordix.org
/
onap
/
sdc
/
onap-ui-angular
/
05b37297177e8a342668c15e5d6f738b51f7aedd
/
.
/
src
/
react
/
TileFooterCell.js
blob: 37e641618a97ff9d5db6b4f170a65286f2a36bcc [
file
] [
log
] [
blame
]
import
React
from
'react'
;
const
TileFooterCell
=
({
className
,
children
,
dataTestId
})
=>
(
<
span className
={`
sdc
-
tile
-
footer
-
cell $
{
className
||
''
}`}
data
-
test
-
id
={
dataTestId
}>{
children
}</
span
>
);
export
default
TileFooterCell
;