import { Col, Row } from 'react-bootstrap'; import { Project } from '../../../core/project'; import React from 'react'; export default function Gems({ project = { deployedProject: {}, } as any, selectComponent, selectTab, }: { project: Project; selectComponent: (component: string, props?: any) => void; selectTab: (tab: string, props?: any) => void; }) { return ( <>

Gems

Gems add functionality to your web3 project.

); }