umami/pages/_app.js

8 lines
188 B
JavaScript
Raw Normal View History

2020-07-17 10:03:38 +02:00
import React from 'react';
import 'styles/bootstrap-grid.css';
2020-08-02 06:20:52 +02:00
import 'styles/index.css';
2020-07-17 10:03:38 +02:00
export default function App({ Component, pageProps }) {
return <Component {...pageProps} />;
}