mirror of
https://github.com/brianc/node-postgres.git
synced 2025-12-08 20:16:25 +00:00
10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
import { Callout } from 'nextra-theme-docs'
|
|
|
|
export const Alert = ({ children }) => {
|
|
return (
|
|
<Callout type="warning" emoji="⚠️">
|
|
{children}
|
|
</Callout>
|
|
)
|
|
}
|