dce-reactkit 3.0.0-beta.1 → 3.0.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,9 +1,11 @@
1
1
  /**
2
2
  * A wrapper for the entire React app that adds global functionality like
3
- * handling for fatal error messages
3
+ * handling for fatal error messages, adds bootstrap support
4
4
  * @author Gabe Abrams
5
5
  */
6
6
  import React from 'react';
7
+ import 'bootstrap/dist/css/bootstrap.min.css';
8
+ import 'bootstrap/dist/js/bootstrap.min';
7
9
  declare type Props = {
8
10
  children: React.ReactNode;
9
11
  dark?: boolean;