mirror of
https://github.com/FranP-code/spend-ia.git
synced 2025-10-13 00:14:09 +00:00
8 lines
187 B
JavaScript
8 lines
187 B
JavaScript
/* eslint-disable react/prop-types */
|
|
import React from 'react';
|
|
import './index.css';
|
|
|
|
export default function MyApp({ Component, pageProps }) {
|
|
return <Component {...pageProps} />;
|
|
}
|