refact: rename Column components to be generic

This commit is contained in:
Jean-Philippe Sirois
2019-11-11 17:18:09 -08:00
parent ba88927304
commit 711da3c517
25 changed files with 553 additions and 555 deletions
+12
View File
@@ -0,0 +1,12 @@
import React, { FC } from "react"
import * as SC from "./styles"
export const HomePartner: FC = () => {
return (
<SC.HomePartnerWrapper>
Member of
<SC.StyledJetBrainsLogo alt="JetBrains" />
Supported user groups
</SC.HomePartnerWrapper>
)
}