UNPKG

@onextech/react-semantic-booster

Version:

Extended components for react-semantic-ui

48 lines (41 loc) 2.21 kB
// @flow /** * This function says hello. * @param name Some name to say hello for. * @returns The hello. */ export const sayHello = (name: string = 'Haz'): string => `Hello, ${name}!`; // atoms export { default as ButtonLink } from './components/atoms/ButtonLink'; export { default as MenuLink } from './components/atoms/MenuLink'; export { default as DropdownLink } from './components/atoms/DropdownLink'; export { default as Block } from './components/atoms/Block'; export { default as Breadcrumbs } from './components/atoms/Breadcrumbs'; export { default as LineAccordion } from './components/atoms/LineAccordion'; export { default as StatCard } from './components/atoms/StatCard'; export { default as Header } from './components/atoms/Header'; export { default as Grid } from './components/atoms/Grid'; export { default as Menu } from './components/atoms/Menu'; export { default as Tab } from './components/atoms/Tab'; export { default as IconList } from './components/atoms/IconList'; export { default as Button } from './components/atoms/Button'; // molecules export { default as VideoBackground } from './components/molecules/VideoBackground'; export { default as GoalCards } from './components/molecules/GoalCards'; export { default as PhotoCard } from './components/molecules/PhotoCard'; export { default as SocialLinkGroup } from './components/molecules/SocialLinkGroup'; export { default as Callout } from './components/molecules/Callout'; export { default as TriPhotoBlock } from './components/molecules/TriPhotoBlock'; export { default as Copy } from './components/molecules/Copy'; export { default as SpacedAccordion } from './components/molecules/SpacedAccordion'; // organisms export { default as Hero } from './components/organisms/Hero'; export { default as Banner } from './components/organisms/Banner'; export { default as HalfBanner } from './components/organisms/HalfBanner'; export { default as Sider } from './components/organisms/Sider'; // templates export { default as SiteNav } from './components/templates/SiteNav'; export { default as HomeTemplate } from './components/templates/HomeTemplate'; // utils export * from './utils/responsive'; export * from './utils/helpers';