├── .editorconfig ├── .gitignore ├── README.md ├── bower.json ├── hello-world.html └── index.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/hello-world-xtag/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/hello-world-xtag/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/hello-world-xtag/HEAD/bower.json -------------------------------------------------------------------------------- /hello-world.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/hello-world-xtag/HEAD/hello-world.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/hello-world-xtag/HEAD/index.html --------------------------------------------------------------------------------