Replies: 2 comments
-
try this import React from 'react';
import styles from './Layout.module.less';
const Layout = ({ children }) => {
console.info(styles);
return ( <> {children} </> )
};
export default Layout; and if not works |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've config gatsby-plugin-less correctly, here's the code.
`
import React from 'react';
import styles from './Layout.module.less';
const Layout = ({ children }) => {
console.info(styles);
return
};
export default Layout;
`
Beta Was this translation helpful? Give feedback.
All reactions