bufferapp/ui

View on GitHub
src/documentation/examples/Text/label/HelpWithError.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react'
// @ts-expect-error TS(2307) FIXME: Cannot find module '@bufferapp/ui/Text' or its cor... Remove this comment to see the full error message
import Text from '@bufferapp/ui/Text'

/** Help with error */
export default function ExampleText() {
  return (
    <Text htmlFor="foo" type="help" hasError>
      This is a help with error Label
    </Text>
  )
}