mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-12 23:38:20 +00:00
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
import { createStructuredSelector } from 'reselect';
|
|
|
|
const makeIntlSelector = () => createStructuredSelector({
|
|
intl: ({ intl }) => intl,
|
|
});
|
|
|
|
export default makeIntlSelector;
|