-
Notifications
You must be signed in to change notification settings - Fork 27k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0803b55
commit 882fe86
Showing
4 changed files
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
"use client"; | ||
import * as Mantine from "@mantine/core"; | ||
'use client' | ||
import * as Mantine from '@mantine/core' | ||
|
||
console.log(Mantine.Button.Group.classes); | ||
console.log(Mantine.Button.Group.classes) | ||
|
||
export function MantineComponent() { | ||
return ( | ||
<> | ||
<h1>Client Component</h1> | ||
</> | ||
); | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
"use client"; | ||
import * as Mermaid from "mermaid"; | ||
'use client' | ||
import * as Mermaid from 'mermaid' | ||
|
||
console.log(Mermaid); | ||
console.log(Mermaid) | ||
// console.log(Mantine.Button.Group.classes); | ||
|
||
export function MermaidComponent() { | ||
return ( | ||
<> | ||
<h1>Client Component</h1> | ||
</> | ||
); | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ const config = { | |
plugins: { | ||
tailwindcss: {}, | ||
}, | ||
}; | ||
} | ||
|
||
export default config; | ||
export default config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
import type { Config } from "tailwindcss"; | ||
import type { Config } from 'tailwindcss' | ||
|
||
const config: Config = { | ||
content: [ | ||
"./pages/**/*.{js,ts,jsx,tsx,mdx}", | ||
"./components/**/*.{js,ts,jsx,tsx,mdx}", | ||
"./app/**/*.{js,ts,jsx,tsx,mdx}", | ||
'./pages/**/*.{js,ts,jsx,tsx,mdx}', | ||
'./components/**/*.{js,ts,jsx,tsx,mdx}', | ||
'./app/**/*.{js,ts,jsx,tsx,mdx}', | ||
], | ||
theme: { | ||
extend: { | ||
colors: { | ||
background: "var(--background)", | ||
foreground: "var(--foreground)", | ||
background: 'var(--background)', | ||
foreground: 'var(--foreground)', | ||
}, | ||
}, | ||
}, | ||
plugins: [], | ||
}; | ||
export default config; | ||
} | ||
export default config |