mirror of
https://github.com/hashicorp/packer.git
synced 2026-04-20 21:59:08 -04:00
12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
|
|
import s from './style.module.css'
|
||
|
|
|
||
|
|
function DevAlert({ children }) {
|
||
|
|
return (
|
||
|
|
<div className={s.root}>
|
||
|
|
<div className={s.inner}>{children}</div>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default DevAlert
|