All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
import React from 'react';
|
|
import { translate } from '../lib';
|
|
|
|
const Greeter = ({ name, t }) => (
|
|
<h3>{t('hello_name', { name })}</h3>
|
|
);
|
|
|
|
export default translate()(Greeter);
|