mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
|
import React from 'react';
|
||
|
import 'styles/index.css';
|
||
|
import 'styles/bootstrap-grid.css';
|
||
|
|
||
|
export default function App({ Component, pageProps }) {
|
||
|
return <Component {...pageProps} />;
|
||
|
}
|