Out of Date Docs.
See original GitHub issuefoundation-sites@6.4.4
react-foundation@0.9.4
Hey all,
New installs of foundation-sites no longer have out of the box support for the float-grid system used by the Row and Column components. It has to be specifically enabled. This will no longer work for folks like myself making fresh codebases with the latest versions of foundation-sites and react-foundation:
<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>
Digging through the commits for react-foundation, I saw that all the work to use the XY-grid system has already been done, and this works perfectly:
<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>
Updating the docs to reflect this would save a lot of headaches for foundation newbies like myself.
Appreciate all the work you’ve put into this!
Issue Analytics
- State:
- Created 5 years ago
- Reactions:4
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Outdated Documentation | How It Can Cost You
This article by Jacquie Samuels discusses how outdated documentation can cost your brand and your company.
Read more >Out of date technical documentation, or the consequences ...
Out-of-date documentation is no better than no documentation. The company could foul of their small print. How Ironic!
Read more >Set an expiration date for file access
To accept the 30-day expiration date, click Send. and select the expiration date from the calendar.
Read more >What should I do with documents that are completely out of ...
To deprecate a document, go to the Verification > Your content and click on the Deprecate button for a document.
Read more >The Holy Grail of “Always-Up-to-Date” Documentation
When you ask someone what's wrong with your documentation, the top 3 answers will be: no one reads it, it is misleading, and...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@zoe-gonzales No-one is currently working on this, a PR would be welcome. Thank you!
I would also like to request an update to the Documentation. I am relatively new to working with ReactJs and have been looking for a way Foundation 6 + React. Your Components seem like the perfect pairing to do this however I am unable to use them as the instruction is not clear to a newer react developer.
import React from 'react-foundation' ;
… use components <— this is unclearI was able to get some of the components working in my project by importing them individually. example:
import {Button, Colors, Sizes, Badge, Cell, Grid, GridContainer} from "react-foundation";
then they work just fine but this is not clearly documented and I feel that there may be a easier way to work with your components.Thank you for all the work that was put into this project.