mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-10-11 11:17:35 +02:00
17 lines
385 B
TypeScript
17 lines
385 B
TypeScript
import React from 'react';
|
|
import { MantineProvider } from '@mantine/core';
|
|
import { mantineTheme } from './theme/mantineTheme';
|
|
import HomePage from './pages/HomePage';
|
|
|
|
// Import global styles
|
|
import './styles/tailwind.css';
|
|
import './index.css';
|
|
|
|
export default function App() {
|
|
return (
|
|
<MantineProvider theme={mantineTheme}>
|
|
<HomePage />
|
|
</MantineProvider>
|
|
);
|
|
}
|