iterative/vscode-dvc

View on GitHub
webview/src/plots/components/PathHighlight.tsx

Summary

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

export const PathHighlight: React.FC<PropsWithChildren> = ({ children }) => (
  <span className={styles.pathHighlight}>{children}</span>
)