j-cli 12.8.51

A fast CLI tool for alias management, daily reports, and productivity
1
2
3
4
5
6
7
8
9
10
11
12
import type { CommandExample as CommandExampleType } from '../../types'

export function CommandExample({ cmd, description }: CommandExampleType) {
  return (
    <div className="py-3 border-b border-stone-200 last:border-0">
      <code className="text-stone-700 font-mono text-sm block mb-1 whitespace-pre overflow-x-auto">
        {cmd}
      </code>
      <span className="text-stone-500 text-sm">{description}</span>
    </div>
  )
}