mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +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>
|
||
}
|