import { Notice } from '@wordpress/components'
import React from 'react'
import {__} from "@wordpress/i18n";
export const FeedbackSuccess = () => {
return (
{__('Your feedback was sent!', 'posten-bring-checkout')}
)
}
export const FeedbackWarning = () => {
return (
{__('A problem occured, your feedback was not sent', 'posten-bring-checkout')}
)
}