Skip to content

Instantly share code, notes, and snippets.

@YannMjl
Last active August 23, 2019 18:07
Show Gist options
  • Save YannMjl/c86afe8c107d103efc8d439745da20ff to your computer and use it in GitHub Desktop.
Save YannMjl/c86afe8c107d103efc8d439745da20ff to your computer and use it in GitHub Desktop.
import { Component } from '@angular/core';
import demodata from '../assets/demo.json';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'read-json-demo';
Players: any = demodata;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment