East Africa Power companies

  

East Africa Power companies 


Since 2015 the East africa power pull project established and there is a joint energy networking projects form transmision ,distribution and other joint activities.

Similarly the other countries like West Africa power pull and south and north have also been creating joint projects which i will reasearch and write in futrue (stay informed subscribe here for email notification) . 

The following is the list of East Africa Power companies (engaged in Energy supply,transmission ,distribution and utility provision).




like_button.js 'use strict'; const e = React.createElement; class LikeButton extends React.Component { constructor(props) { super(props); this.state = { liked: false }; } render() { if (this.state.liked) { return 'You liked this.'; } return e( 'button', { onClick: () => this.setState({ liked: true }) }, 'Like' ); } } const domContainer = document.querySelector('#like_button_container'); const root = ReactDOM.createRoot(domContainer); root.render(e(LikeButton));

Comments