mirror of
https://github.com/status-im/consul.git
synced 2025-02-21 09:58:26 +00:00
12 lines
200 B
JavaScript
Executable File
12 lines
200 B
JavaScript
Executable File
App = Ember.Application.create();
|
|
|
|
App.Router.map(function() {
|
|
// put your routes here
|
|
});
|
|
|
|
App.IndexRoute = Ember.Route.extend({
|
|
model: function() {
|
|
return ['red', 'yellow', 'blue'];
|
|
}
|
|
});
|