You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/website/components/dev-alert/index.js

12 lines
200 B

import s from './style.module.css'
function DevAlert({ children }) {
return (
<div className={s.root}>
<div className={s.inner}>{children}</div>
</div>
)
}
export default DevAlert