mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
feat(webapp): wip print preview financial reports
This commit is contained in:
@@ -1,8 +1,13 @@
|
||||
// @ts-nocheck
|
||||
import intl from 'react-intl-universal';
|
||||
|
||||
export function FormattedMessage({ id, values }) {
|
||||
return intl.get(id, values);
|
||||
interface FormattedMessageProps {
|
||||
id: string;
|
||||
values?: Record<string, any>;
|
||||
}
|
||||
|
||||
export function FormattedMessage({ id, values }: FormattedMessageProps) {
|
||||
return <>{intl.get(id, values)}</>;
|
||||
}
|
||||
|
||||
export function FormattedHTMLMessage({ ...args }) {
|
||||
|
||||
Reference in New Issue
Block a user