29 lines
588 B
TypeScript
29 lines
588 B
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { Card } from '@wordpress/components';
|
|
import { Icon, help } from '@wordpress/icons';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import strings from './strings';
|
|
|
|
const FrequentlyAskedQuestionsSimple: React.FC = () => {
|
|
return (
|
|
<Card className="woopayments-welcome-page__faq">
|
|
<Icon icon={ help } />
|
|
<span>{ strings.faq.haveQuestions } </span>
|
|
<a
|
|
href="https://woo.com/my-account/tickets/"
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
{ strings.faq.getInTouch }
|
|
</a>
|
|
</Card>
|
|
);
|
|
};
|
|
|
|
export default FrequentlyAskedQuestionsSimple;
|