Skip to content

Commit

Permalink
fix(Grid): export Grid correct
Browse files Browse the repository at this point in the history
  • Loading branch information
langz committed Oct 31, 2023
1 parent 72de227 commit fa25ca4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion packages/dnb-eufemia/src/components/grid/Grid.ts
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
export * as default from './'
import Container from './Container'
import Item from './Item'

export default { Container, Item }
10 changes: 8 additions & 2 deletions packages/dnb-eufemia/src/components/grid/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
export { default as Container } from './Container'
export { default as Item } from './Item'
/**
* Component Entry
*
*/

import Grid from './Grid'
export default Grid
export * from './Grid'

0 comments on commit fa25ca4

Please sign in to comment.