Files
astuto/app/javascript/components/common/PoweredByLink.tsx

12 lines
282 B
TypeScript
Raw Normal View History

2024-02-27 18:32:14 +01:00
import * as React from 'react';
import I18n from 'i18n-js';
const PoweredByLink = () => (
<div className="poweredBy">
<a href="https://github.com/astuto/astuto/" target="_blank">
2024-02-27 18:32:14 +01:00
{ I18n.t('common.powered_by') } Astuto
</a>
</div>
);
export default PoweredByLink;