used blog

This commit is contained in:
2025-10-27 17:49:56 +05:30
parent afb1a26a75
commit ad5d567f8a
4 changed files with 2 additions and 69 deletions

View File

@@ -1,19 +1,12 @@
import * as React from 'react';
import { createRoot } from 'react-dom/client';
import CssBaseline from '@mui/material/CssBaseline';
import { ThemeProvider } from '@mui/material/styles';
import App from './App';
import theme from './theme';
import Blog from './blog/Blog';
const rootElement = document.getElementById('root');
const root = createRoot(rootElement);
root.render(
<React.StrictMode>
<ThemeProvider theme={theme}>
{/* CssBaseline kickstart an elegant, consistent, and simple baseline to build upon. */}
<CssBaseline />
<App />
</ThemeProvider>
<Blog />
</React.StrictMode>,
);