umami/pages/_app.js

8 lines
188 B
JavaScript
Raw Normal View History

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