Skip to content

Instantly share code, notes, and snippets.

View kallebornemark's full-sized avatar
🎯
Busy

Kalle Bornemark kallebornemark

🎯
Busy
View GitHub Profile
@oun
oun / formatMessage.js
Last active November 19, 2024 17:50
Use React-Intl API outside React component
import { IntlProvider } from 'react-intl';
const language = 'en';
// Usually messages is declared in another file.
const messages = {
greeting: 'Hello'
}
export const mesg = defineMessages({
greeting: {
id: 'greeting',