initial commit
This commit is contained in:
9
packages/common/src/index.ts
Normal file
9
packages/common/src/index.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export const greet = (name: string): string => {
|
||||
return `Hello, ${name}!`;
|
||||
};
|
||||
|
||||
export type User = {
|
||||
id: string;
|
||||
name: string;
|
||||
email: string;
|
||||
};
|
||||
Reference in New Issue
Block a user