💻 Full-Stack Developer
⚡ TypeScript | React | React Native (Expo) | Node.js | .NET | Python
☁️ AWS | Firebase | GraphQL | REST APIs | Docker
import React from 'react';
const Wilson = () => {
const developer = {
name: 'Weimeng Ding',
role: 'Full-Stack Developer',
stack: [
'TypeScript',
'React',
'React Native (Expo)',
'Node.js',
'.NET',
'Python',
'AWS',
'Firebase',
'GraphQL',
'REST APIs',
'Docker'
],
location: 'Melbourne, AU',
email: 'wilson.ding.wm@gmail.com',
website: 'https://weimengding.online/'
};
return (
<div>
<h1>{developer.name}</h1>
<p>{developer.role}</p>
</div>
);
};
export default Wilson;




