Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
moughxyz committed Nov 6, 2018
0 parents commit b2efd3c
Show file tree
Hide file tree
Showing 5,004 changed files with 88,306 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
12 changes: 12 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"presets": [ "es2015", "stage-0", "react"],

/* if you want to use babel runtime, uncomment the following line */
// "plugins": ["transform-runtime"],

"env": {
"build": {
"optional": ["optimisation", "minification"]
}
}
}
50 changes: 50 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# nyc test coverage
.nyc_output

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history

# node-waf configuration
.lock-wscript

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

## building output directory
build

# OSX
.DS_Store

# Packaged and compiled files
.eslintcache

# Env configuration
.env

# Editor
.idea
Empty file added README.md
Empty file.
16 changes: 16 additions & 0 deletions app/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from 'react';
import Home from './components/Home';

export default class App extends React.Component {
constructor(props) {
super(props);
}

render() {
return (
<div className="sn-component">
<Home />
</div>
);
}
}
341 changes: 341 additions & 0 deletions app/_old_vendor/js/angular.min.js

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions app/_old_vendor/js/cultures/kendo.culture.aa-DJ.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions app/_old_vendor/js/cultures/kendo.culture.aa-DJ.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b2efd3c

Please sign in to comment.