Open Assaff1 opened 2 months ago
npx create-react-app my-app --template typescript
function identity(arg: T): T { return arg; }
let numberIdentity = identity(42); // النوع هنا هو number let stringIdentity = identity("Hello"); // النوع هنا هو string
npx create-react-app my-app --template typescript