Lu, Jun
Results
2
comments of
Lu, Jun
trafficstars
instead of CDN, I use local assets instead ```javascript // package.json { "script": { "postinstall": "node ./postinstall.js" } } ``` ```javascript // postinstall.js const path = require('path'); const fs =...
you need to create a client component wrapper with `use client` declaration ```jax // MyPage.js 'use client'; import { Page } from '@patternfly/react-core'; const MyPage = (props) => { return...