* Add local components to build on new DocsPage functionality. * Add new nav-data format, and placeholder remote-plugins config * Bump to pre-release components and implement remote loading - Migrates /docs to new DocsPage API, and adds remote plugin loading functionality - Migrates /guides and /intro to new DocsPage API * Remove now unused JS nav config * Cut empty comment line
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
|