ps-webapp-property-detail
v0.1.0
Published
This project is depending on webapp-common. In order to link those: * go to the webapp-common project or check it out. * go to the root directory of webapp-common * run "npm run build" * run "npm run prePublishOnly" (which will make a dist folder that can
Downloads
2
Readme
Properties Global Overview
Project Setup
This project is depending on webapp-common. In order to link those:
- go to the webapp-common project or check it out.
- go to the root directory of webapp-common
- run "npm run build"
- run "npm run prePublishOnly" (which will make a dist folder that can be imported by another module)
- run "npm link"
- go to the root directory of of webapp-properties-global-overview
- run "npm link ps-webapp-common"
Development
- Everything (css, js, components, ...) above GlobalOverviewScreen.component and GlobalOverviewScreenHeader.component is not meant to be shipped. Take this into account when adding functionality, styling on e.g. the ComponentTestScreen.screen component (which is meant for component testing/demoing).
- do not use
import {Component, default as React} from "react";
but do useimport {Component} from "react";
import * as React from "react";
Otherwise you'll have strange "could not find on undefined issues when using these components".
start webapp locally - in memory data
To start the webapp without a backend, go to http://localhost:3000/?inMemoryData=true.