27 lines
726 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from "react";
import Link from "next/link";
export default class SuccessMessage extends React.Component
{
constructor(props)
{
super(props);
this.state = {
};
}
render()
{
const { number, comment } = this.props;
return (
<article className="compare">
<div className="compare_message">
<p>{ comment }</p>
<br/>
<p>Сообщение успешно отправлено, ожидайте, пожалуйста, ответа от ответсвенного сотрудника Отдела <br/>по работе с клиентами.<br/><br/><Link href={`/support/appeals`}>Перейти к списку обращений</Link></p>
</div>
</article>
);
}
}