mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 04:55:08 +08:00
15 lines
366 B
React
15 lines
366 B
React
|
|
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')
|
||
|
|
);
|
||
|
|
});
|