import CIDRCalculator from "./CIDRCalculator" export default function NetworkingTools() { return ( <div> <section> <h2>CIDR Calculator</h2> <CIDRCalculator /> <small>Thanks to <a href="https://github.com/beaugunderson/ip-address/">ip-address</a> for a bunch of heavy lifting</small> </section> </div> ) }