File size: 304 Bytes
84f80c5
97d4387
e1bc1d4
 
84f80c5
 
 
 
 
 
 
 
 
 
 
e1bc1d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { ConfigProvider } from 'antd';
import React, { ReactNode } from 'react';

export function rootContainer(container: ReactNode) {
  return React.createElement(
    ConfigProvider,
    {
      theme: {
        token: {
          fontFamily: 'Inter',
        },
      },
    },
    container,
  );
}