added user-fetching functionality on build

This commit is contained in:
Xetera
2019-07-29 04:12:04 -04:00
committed by Jean-Philippe Sirois
parent 1d93f4e160
commit 1b6525f4b4
15 changed files with 172 additions and 32 deletions
+14
View File
@@ -0,0 +1,14 @@
import React from "react"
function DiscordButton({
lined = false,
children,
}: React.PropsWithChildren<{ lined: boolean }>) {
return (
<button>
<div>{children}</div>
</button>
)
}
export default DiscordButton