# Body

`Body` is a special type of Widget called `AssemblyWidget`,  since the HTMLBodyElement is already on the page, instead it gets initiated without being constructed.

### Constructor
`Body` has no Constructor, instead it relies on being called as a function, takes one argument with only one independent option, `child`
```javascript
Body(options: object)
``` 

### Example
```javascript
Body({
	child: new Widget();
});
```