16 lines
254 B
TypeScript
16 lines
254 B
TypeScript
import { Global } from "@mantine/core";
|
|
|
|
const GlobalStyle = () => {
|
|
return (
|
|
<Global
|
|
styles={() => ({
|
|
a: {
|
|
color: "inherit",
|
|
textDecoration: "none",
|
|
},
|
|
})}
|
|
/>
|
|
);
|
|
};
|
|
export default GlobalStyle;
|