All Projects → digiaonline → React Foundation

digiaonline / React Foundation

Licence: mit
Foundation as React components.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Foundation

Elixirschool
The content behind Elixir School
Stars: ✭ 3,171 (+453.4%)
Mutual labels:  hacktoberfest, scss
Devlopr Jekyll
Build and Deploy your Static Site 🚀 using this beautiful Jekyll Framework/Theme built for Creatives
Stars: ✭ 309 (-46.07%)
Mutual labels:  hacktoberfest, scss
Eo Locale
🌏Internationalize js apps 👔Elegant lightweight library based on Internationalization API
Stars: ✭ 290 (-49.39%)
Mutual labels:  hacktoberfest, react-components
Awesome Learning
Awesome Learning - Learn JavaScript and Front-End Fundamentals at your own pace
Stars: ✭ 216 (-62.3%)
Mutual labels:  hacktoberfest, scss
Github Dark Theme
GitHub Dark Theme - Extension for Chrome, Firefox, and Microsoft Edge
Stars: ✭ 413 (-27.92%)
Mutual labels:  hacktoberfest, scss
Material Ui
MUI (formerly Material-UI) is the React UI library you always wanted. Follow your own design system, or start with Material Design.
Stars: ✭ 73,739 (+12768.94%)
Mutual labels:  hacktoberfest, react-components
Scssphp
SCSS compiler written in PHP
Stars: ✭ 309 (-46.07%)
Mutual labels:  hacktoberfest, scss
Styleguide
The VTEX Design System and React component library.
Stars: ✭ 138 (-75.92%)
Mutual labels:  hacktoberfest, react-components
Magento2 Theme Blank Sass
SASS based version of Magento 2 Blank theme
Stars: ✭ 373 (-34.9%)
Mutual labels:  hacktoberfest, scss
Patternfly
This repo contains core (HTML/CSS) implementation for PatternFly. Issues related to CSS/HTML and layout should be filed here.
Stars: ✭ 328 (-42.76%)
Mutual labels:  hacktoberfest, scss
Colaboradados.github.io
O VEÍCULO COLABORATIVO SOBRE TRANSPARÊNCIA E OPEN DATA NO BRASIL.
Stars: ✭ 201 (-64.92%)
Mutual labels:  hacktoberfest, scss
Alembic
⚗️ A Jekyll boilerplate theme designed to be a starting point for any Jekyll website
Stars: ✭ 501 (-12.57%)
Mutual labels:  hacktoberfest, scss
Bootstrap Italia
Bootstrap Italia è un tema Bootstrap 4 conforme alle linee guida di design per i servizi web della PA
Stars: ✭ 193 (-66.32%)
Mutual labels:  hacktoberfest, scss
Stylesheet
The GTK Stylesheet for elementary OS
Stars: ✭ 260 (-54.62%)
Mutual labels:  hacktoberfest, scss
Media Manager
A simple file browser and up-loader for Laravel written in Vue.JS
Stars: ✭ 190 (-66.84%)
Mutual labels:  hacktoberfest, scss
Docs
Parse Platform docs
Stars: ✭ 296 (-48.34%)
Mutual labels:  hacktoberfest, scss
Component Docs
📝 Simple documentation for your React components
Stars: ✭ 116 (-79.76%)
Mutual labels:  hacktoberfest, react-components
Phpid Learning
🙋 Belajar daring bersama PHPID
Stars: ✭ 125 (-78.18%)
Mutual labels:  hacktoberfest, scss
Letra Extension
Passively learn a new language every time you open a new tab
Stars: ✭ 323 (-43.63%)
Mutual labels:  hacktoberfest, scss
Patternfly React
A set of React components for the PatternFly project.
Stars: ✭ 454 (-20.77%)
Mutual labels:  hacktoberfest, react-components

React + Foundation

Build Status Test Coverage Maintainability StyleCI npm version npm downloads License

Foundation as React components.

Demo

https://digia.online/react-foundation-docs/

Components with Bit

Motivation

Foundation is both feature-rich and easy to customize. React on the other hand is awesome because of its simplicity. It's even more awesome when combined with Redux and Immutable.

After building quite a few applications with React and Foundation we noticed that we were writing the same components over and over again. First we tried to find a library that would do the job, but there was none that met our needs. So we collected our notes, started coding and here's the result.

We hope you enjoy it as much as we do!

What's in the box?

The goal is to wrap every part of Foundation into re-usable React components following the framework's best practices. The primary focus is ease-of-use and extensibility. We use pure render components, also known as stateless components, whenever possible to keep the memory usage to a minimum. Stateful components are only used for larger components, such as ResponsiveNavigation, where state is actually necessary. All components are unit-tested to ensure their quality.

Here is a list of the available components:

More components coming soon!

Install

Install library:

npm install react-foundation --save

Install foundation-sites:

npm install foundation-sites --save

Usage

// Add Foundation to index.js
import 'foundation-sites/dist/css/foundation.min.css';

// import components
import { Button, Colors } from 'react-foundation';

// Use components ...
function SubmitButton() {
  return <Button color={Colors.SUCCESS}>Submit</Button>;
}

Documentation is at https://digia.online/react-foundation-docs/.

Note: Newer versions of foundation-sites do not offer out of the box support for <Row/> and <Column/> components. If working with a newer version, <Grid/> and <Cell/> components should be used instead.

// Previous versions
<Row className="display">
  <Column small={2} large={4}>4 columns</Column>
  <Column small={4} large={4}>4 columns</Column>
  <Column small={6} large={4}>4 columns</Column>
</Row>

// Newer versions
<Grid className="display">
  <Cell small={2} large={4}>4 columns</Cell>
  <Cell small={4} large={4}>4 columns</Cell>
  <Cell small={6} large={4}>4 columns</Cell>
</Grid>

Contributing

Please read our guidelines.

Credits

  • Thanks to Nord Software and Digia for sponsoring initial development.
  • Thanks to @jmreidy for releasing the react-foundation package name to us on NPM.

License

See LICENSE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].