This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const bcrypt = require('bcrypt'); | |
module.exports = { | |
port : 5000, | |
sessionSecretKey : bcrypt.hashSync("SECRET_KEY", 2) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react" | |
import LoadedDiv from './Loaded.js' | |
import PreLoadDiv from './preload-content.js' | |
export default class App extends React.Component{ | |
constructor(props){ | |
super(props); | |
this.state ={ loading : false}; | |
} | |
componentWillMount(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// project structure | |
/* | |
├───node_modules | |
├───public | |
│ ├───css | |
│ │ normalize.css | |
│ │ skeleton.css | |
│ │ style.css | |
│ │ |
NewerOlder