Skip to content

Commit

Permalink
remove empty lines between import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
mnajdova committed Jun 22, 2023
1 parent 0cd3bbb commit d4d0f72
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import * as React from 'react';

import About from '@/layouts/About/About';

export default function AboutPage() {
Expand Down
2 changes: 0 additions & 2 deletions examples/material-next-app-router-ts/src/app/fonts/fonts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,5 @@ export default GoogleInterFont;
// Local Fonts example
// more details here: https://nextjs.org/docs/app/building-your-application/optimizing/fonts#local-fonts
// import localFont from 'next/font/local';

// const LocalFont = localFont({src: [{path: './path-of-font-file-regular.woff', weight: '400', style: 'normal'}], fallback: ['Arial', 'sans-serif']})

// export default LocalFont;
1 change: 0 additions & 1 deletion examples/material-next-app-router-ts/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import * as React from 'react';

import Home from '@/layouts/Home/Home';

export default function RootPage() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import * as React from 'react';
import { ThemeProvider } from '@mui/material/styles';
import CssBaseline from '@mui/material/CssBaseline';
import { NextAppDirEmotionCacheProvider } from '@/components/Theme/ThemeRegistry/EmotionCache';

import theme from './theme';

export default function ThemeRegistry({ children }: { children: React.ReactNode }) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use client';

import { createTheme } from '@mui/material/styles';

import GoogleInterFont from '@/app/fonts/fonts';

// When needed::: first argument is needed if you have common enterprise theme, and second argument is to override your enterprise theme.
Expand Down

0 comments on commit d4d0f72

Please sign in to comment.