1function AppContainer({ children }) {
2  return children;
3}
4
5AppContainer.displayName = 'AppContainer';
6
7export default AppContainer;
8