iterative/vscode-dvc

View on GitHub
webview/src/experiments/components/table/content/CellContent.tsx

Summary

Maintainability
A
1 hr
Test Coverage
A
100%
import React from 'react'
import styles from '../styles.module.scss'

interface CellContentProps {
  children: string
}

export const CellContents: React.FC<CellContentProps> = ({ children }) => (
  <span className={styles.cellContents}>{children}</span>
)