Skip to content
Snippets Groups Projects
Select Git revision
  • adf0442910025e921110643543289d82a80c5253
  • master default protected
2 results

Img.js

Blame
  • Forked from an inaccessible project.
    Img.js 184 B
    import Component from './Component.js'
    export default class Img extends Component{
    	chemin;
    	constructor(chemin){
    		super('img',
    		{
    			name:'src',
    			value: chemin,
    		}
    		,null)
    	}
    
    }