react-dev-os
Version:
An interactive development environment for react apps.
35 lines (26 loc) • 997 B
Markdown




DevOS provides a simple window manager for custom and/or pre-built tools that can easily be added to your current react project.
```bash
$ npm install react-dev-os
$ yarn add react-dev-os
```
Adding DevOS to your project is simple. Since it is just a React component, we can import it and add it to our component tree. There are a few different props that we can pass down, but for this basic example we will just pass in an array to the tools prop.
```jsx
import DevOS from "./DevOS";
import tools from "./tools";
const App = () => {
return (
<View>
<Body />
<DevOS tools={tools} />
</View>
);
};
```