Caleb Jacob
Caleb Jacob
With the awesome work @andy-haynes did to refactor how props can be passed more naturally (without nesting them in a `props` object), I realized we could start using a more...
It's a very common React pattern to pass `children` into a component. You'd set up your component to take in a `children: ReactNode` prop like so: ```tsx import type {...
As of now, the sandbox publishes components without setting any `metadata`. It would be cool if we could expose a way in the UI to set/modify at least parts of...
While working on separating out UI related packages for our monorepo, it made sense to do a quick investigation into [Rollup](https://rollupjs.org/) for bundling these packages in order to support external...
Create the following component in the sandbox: ```tsx import s from './styles.module.css'; function MyComponent() { return ( Hello ); } export default MyComponent as BWEComponent; ``` Then add the following...
Our demos currently reach out directly to the RPC. We should update our demos to use the new Social DB plugin. https://bos-web-engine.vercel.app/webengine.near/SocialFeedPage