13 lines
267 B
JavaScript
13 lines
267 B
JavaScript
|
"use client";
|
||
|
|
||
|
import Col from './col';
|
||
|
import useInternalBreakpoint from './hooks/useBreakpoint';
|
||
|
import Row from './row';
|
||
|
// Do not export params
|
||
|
function useBreakpoint() {
|
||
|
return useInternalBreakpoint();
|
||
|
}
|
||
|
export { Col, Row };
|
||
|
export default {
|
||
|
useBreakpoint
|
||
|
};
|