0.0.5 • Published 8 years ago

@thinkeloquent/react-app-shell v0.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
8 years ago

Install

run npm install

Npm Commands

npm run test npm run start npm run start:inline

Examples

Basic Example

index.js

import reactAppBootstrap from './react-app-shell';
import Shell from './shell';
Shell.hotReloadAccept = './shell';

const shell = reactAppBootstrap(document.getElementById('root'));
const app = shell(Shell);

app({
  a: 2
});

shell.js

import React from 'react';

const Shell = (appState) => {
  return (
    <div className="container">
      <h1>hello</h1>
      <p>Some children here...</p>
    </div>
  )
}

export default Shell;
0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago