import React, { Fragment } from "react"
import test from "ava"
import { createRoot } from "lib/render"
import { createProjectBuilder } from "@tscircuit/builder"
import { logLayout } from "./utils/log-layout"
export const ExampleCircuit = () => {
return (
port.right", ".C1 > port.left"]} />
)
}
test("example footprint resistor capacitor trace", async (t) => {
const pb = createProjectBuilder()
const result = await createRoot().render(, pb)
await logLayout("example footprint resistor capacitor trace", result)
t.pass()
})