component.react 150 B

1234567
  1. export function PreviewBadge({ format }) {
  2. return (
  3. <span data-format={format}>
  4. Flyfish preview: {format.toUpperCase()}
  5. </span>
  6. )
  7. }