mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
import React from 'react'
|
||
import { Callout } from 'nextra-theme-docs'
|
||
|
||
export const Info = ({ children }) => {
|
||
return <Callout emoji="ℹ️">{children}</Callout>
|
||
}
|