Zachary Shilton a906a1b426
docs: Enable docs from remote plugin (#10656)
* 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
2021-03-03 10:13:50 -05:00

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