feige
2024-05-18 7c524db9218938da1fb5f09a6b017f7ed9a217a0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react';
import { render } from 'react-dom';
import TwitterIcon from '../assets/twitter.svg';
import WikipediaIcon from '../assets/wikipedia.svg';
 
document.addEventListener('DOMContentLoaded', () => {
  render(
    <div>
      <TwitterIcon width="100" />
      <WikipediaIcon width="200" />
    </div>,
    document.querySelector('.app')
  );
});