Skip to content

Instantly share code, notes, and snippets.

@aramis-it
Last active June 4, 2019 08:38
Show Gist options
  • Save aramis-it/1e2e172c47631e84c53bcd2510077e09 to your computer and use it in GitHub Desktop.
Save aramis-it/1e2e172c47631e84c53bcd2510077e09 to your computer and use it in GitHub Desktop.
import React from 'react';
// props -н төрлийг зааж өгж байна
type propsTypes = {
name: string
}
const App = (props: propsTypes) => {
return (
<div>
<h1>Name: {props.name}</h1>
</div>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment