chore: add support for react-intl, mui, apolloql

This commit is contained in:
Ali BARIN
2021-10-03 23:46:37 +02:00
parent a4ddc8b50c
commit a62d5369d4
18 changed files with 544 additions and 108 deletions

View File

@@ -0,0 +1,6 @@
import { ApolloClient, InMemoryCache } from '@apollo/client';
const cache = new InMemoryCache();
const client = new ApolloClient({ cache: cache });
export default client;