Skip to content
Snippets Groups Projects
MinorUpdateContent.tsx 454 B
Newer Older
  • Learn to ignore specific revisions
  • import { useI18n } from 'cozy-ui/transpiled/react/I18n'
    
    Bastien DUMONT's avatar
    Bastien DUMONT committed
    import React from 'react'
    
    import './termsView.scss'
    
    
    const MinorUpdateContent = () => {
    
      const { t } = useI18n()
      return (
        <div className="dataShare-content-root">
          <div className="dataShare-content-wrapper">
            <h1 className="dataShare-content-title text-22-normal">
              {t('minorUpdate.title')}
            </h1>
          </div>
        </div>
      )
    }
    
    export default MinorUpdateContent