How to use the @instructure/ui-i18n/lib/components/ApplyLocale.propTypes function in @instructure/ui-i18n

To help you get started, we’ve selected a few @instructure/ui-i18n examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github instructure / instructure-ui / packages / ui-core / src / components / ApplyLocale / index.js View on Github external
import deprecated, { changedPackageWarning } from '@instructure/ui-utils/lib/react/deprecated'

import UIApplyLocale from '@instructure/ui-i18n/lib/components/ApplyLocale'

/**
---
category: components/utilities
---
**/
@deprecated('5.0.0', null, changedPackageWarning(
  'ui-core',
  'ui-i18n'
))
export default class ApplyLocale extends Component {
  static propTypes = {
    ...UIApplyLocale.propTypes
  }

  static childContextTypes = {
    ...UIApplyLocale.childContextTypes
  }

  render () {
    return 
  }
}