mirror of
https://github.com/bendtherules/responsive-code-splitting.git
synced 2026-08-18 13:53:45 +00:00
9 lines
140 B
JavaScript
9 lines
140 B
JavaScript
import React from 'react';
|
|
|
|
const NarrowComponent = () => (
|
|
<div>
|
|
On Potrait Mode
|
|
</div>
|
|
);
|
|
|
|
export default NarrowComponent; |